mirror of
https://github.com/Dokploy/examples
synced 2025-06-26 18:15:52 +00:00
12 lines
223 B
TypeScript
12 lines
223 B
TypeScript
import { defineConfig } from "vite";
|
|
import { svelte } from "@sveltejs/vite-plugin-svelte";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [svelte()],
|
|
preview: {
|
|
port: 3000,
|
|
host: true,
|
|
},
|
|
});
|