mirror of
https://github.com/acid-info/peripatos.free.technology.git
synced 2025-01-12 00:24:45 +00:00
11 lines
213 B
TypeScript
11 lines
213 B
TypeScript
import { defineConfig } from 'vite';
|
|
import { svelte } from '@sveltejs/vite-plugin-svelte';
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [svelte()],
|
|
server: {
|
|
port: 3000,
|
|
},
|
|
});
|