cryptgeon/frontend/svelte.config.js

19 lines
399 B
JavaScript
Raw Normal View History

2021-05-07 09:57:28 +00:00
import preprocess from 'svelte-preprocess'
import adapter from '@sveltejs/adapter-static'
2022-01-16 13:02:53 +00:00
import precompileIntl from 'svelte-intl-precompile/sveltekit-plugin'
2021-05-07 09:57:28 +00:00
export default {
preprocess: preprocess(),
kit: {
adapter: adapter({
fallback: 'index.html',
}),
2022-01-16 13:02:53 +00:00
vite: {
plugins: [
precompileIntl('locales'), // if your translations are defined in /locales/[lang].json
],
},
2021-05-07 09:57:28 +00:00
},
}