odd-app-template/svelte.config.js

18 lines
333 B
JavaScript

import preprocess from 'svelte-preprocess'
import adapter from '@sveltejs/adapter-static'
/** @type {import('@sveltejs/kit').Config} */
const config = {
preprocess: preprocess({
postcss: true,
}),
kit: {
adapter: adapter({
fallback: 'index.html'
}),
trailingSlash: 'always'
},
}
export default config