mirror of
https://github.com/gurucomputing/headscale-ui.git
synced 2026-01-23 02:34:43 +00:00
23 lines
363 B
JavaScript
23 lines
363 B
JavaScript
import adapter from '@sveltejs/adapter-static';
|
|
import preprocess from 'svelte-preprocess';
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
kit: {
|
|
prerender: {
|
|
default: true
|
|
},
|
|
adapter: adapter({
|
|
fallback: 'index.html',
|
|
precompress: false
|
|
})
|
|
},
|
|
|
|
preprocess: [
|
|
preprocess({
|
|
postcss: true
|
|
})
|
|
]
|
|
};
|
|
|
|
export default config;
|