mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2025-09-05 17:00:39 +00:00
13 lines
281 B
JavaScript
13 lines
281 B
JavaScript
import { sveltekit } from '@sveltejs/kit/vite'
|
|
import precompileIntl from 'svelte-intl-precompile/sveltekit-plugin'
|
|
|
|
/** @type {import('vite').UserConfig} */
|
|
const config = {
|
|
server: {
|
|
port: 3000,
|
|
},
|
|
plugins: [sveltekit(), precompileIntl('locales')],
|
|
}
|
|
|
|
export default config
|