26 lines
621 B
JavaScript
26 lines
621 B
JavaScript
|
|
import adapter from '@sveltejs/adapter-static';
|
||
|
|
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
|
||
|
|
|
||
|
|
/** @type {import('@sveltejs/kit').Config} */
|
||
|
|
const config = {
|
||
|
|
preprocess: vitePreprocess(),
|
||
|
|
compilerOptions: {
|
||
|
|
// Force runes mode for the project, except for libraries. Can be removed in svelte 6.
|
||
|
|
runes: ({ filename }) => (filename.split(/[/\\]/).includes('node_modules') ? undefined : true)
|
||
|
|
},
|
||
|
|
kit: {
|
||
|
|
adapter: adapter({
|
||
|
|
pages: 'build',
|
||
|
|
assets: 'build',
|
||
|
|
fallback: 'index.html',
|
||
|
|
precompress: false,
|
||
|
|
strict: false
|
||
|
|
}),
|
||
|
|
alias: {
|
||
|
|
$lib: 'src/lib'
|
||
|
|
}
|
||
|
|
}
|
||
|
|
};
|
||
|
|
|
||
|
|
export default config;
|