mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2024-11-10 17:24:12 +01:00
Nicco
9590c9b567
* use redis * update frontend and switch sanitize library * changelog * theming * docker image * documentation * changelog * clear up limit sizes * version bump * version bump
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
|