ttt-space / frontend /svelte.config.js
radames's picture
radames HF staff
first
feb4f42
import adapter from '@sveltejs/adapter-static';
import preprocess from 'svelte-preprocess';
/** @type {import('@sveltejs/kit').Config} */
const config = {
preprocess: [
preprocess({
postcss: true
})
],
kit: {
adapter: adapter({
pages: 'build',
assets: 'build',
fallback: null,
precompress: false
})
}
};
export default config;