mirror of
https://github.com/Xevion/xevion.dev.git
synced 2026-01-31 00:26:31 -06:00
- 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
16 lines
391 B
TypeScript
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,
|
|
});
|