mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2024-11-01 04:44:16 +01:00
15 lines
331 B
JavaScript
15 lines
331 B
JavaScript
import { sveltekit } from '@sveltejs/kit/vite'
|
|
import precompileIntl from 'svelte-intl-precompile/sveltekit-plugin'
|
|
|
|
const port = 8001
|
|
|
|
/** @type {import('vite').UserConfig} */
|
|
const config = {
|
|
clearScreen: false,
|
|
server: { port },
|
|
preview: { port },
|
|
plugins: [sveltekit(), precompileIntl('locales')],
|
|
}
|
|
|
|
export default config
|