This commit is contained in:
2026-06-07 13:53:38 +02:00
parent f55925de86
commit 9c4fbc30f9
15 changed files with 255 additions and 165 deletions
+3 -5
View File
@@ -1,10 +1,10 @@
import { sveltekit } from '@sveltejs/kit/vite'
import precompileIntl from 'svelte-intl-precompile/sveltekit-plugin'
import { defineConfig } from 'vite'
const port = 3000
/** @type {import('vite').UserConfig} */
const config = {
export default defineConfig({
clearScreen: false,
server: {
port,
@@ -14,6 +14,4 @@ const config = {
},
preview: { port },
plugins: [sveltekit(), precompileIntl('locales')],
}
export default config
})