Files
xevion.dev/web/vite.config.ts
Xevion d86027d27a feat: add Rust reverse proxy with JSON logging
- Axum-based API server with Unix socket and TCP support
- Custom tracing formatters for Railway-compatible JSON logs
- SvelteKit hooks and Vite plugin for unified logging
- Justfile updated for concurrent dev workflow with hl log viewer
2026-01-04 18:21:00 -06:00

16 lines
391 B
TypeScript

import { sveltekit } from "@sveltejs/kit/vite";
import tailwindcss from "@tailwindcss/vite";
import { defineConfig } from "vite";
import Icons from "unplugin-icons/vite";
import { jsonLogger } from "./vite-plugin-json-logger";
export default defineConfig({
plugins: [
jsonLogger(),
tailwindcss(),
sveltekit(),
Icons({ compiler: "svelte" }),
],
clearScreen: false,
});