Spaces:
Running
Running
File size: 316 Bytes
0c4147f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | import adapter from '@sveltejs/adapter-static';
/** @type {import('@sveltejs/kit').Config} */
const config = {
compilerOptions: {
runes: true
},
kit: {
adapter: adapter({
pages: 'build',
assets: 'build',
fallback: '404.html',
strict: true
})
}
};
export default config;
|