restructuring

This commit is contained in:
2022-09-05 13:49:40 +02:00
parent 024dfeeeb7
commit 5912458e46
80 changed files with 1679 additions and 1667 deletions

View File

@@ -0,0 +1,13 @@
import { sveltekit } from '@sveltejs/kit/vite'
import precompileIntl from 'svelte-intl-precompile/sveltekit-plugin'
/** @type {import('vite').UserConfig} */
const config = {
clearScreen: false,
server: {
port: 3000,
},
plugins: [sveltekit(), precompileIntl('locales')],
}
export default config