Spaces:
Runtime error
Runtime error
File size: 364 Bytes
7a52bc5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import adapter from '@sveltejs/adapter-node';
import { vitePreprocess } from '@sveltejs/kit/vite';
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
adapter: adapter({
// default options are shown
out: 'build',
precompress: false,
envPrefix: '',
polyfill: true
})
},
preprocess: vitePreprocess()
};
export default config;
|