linkylinky-dashboard/svelte.config.js

21 lines
436 B
JavaScript
Raw Normal View History

2021-08-12 16:29:51 +00:00
import preprocess from "svelte-preprocess";
2021-08-12 16:39:11 +00:00
import staticAdapter from '@sveltejs/adapter-static';
2021-08-12 16:29:51 +00:00
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
// hydrate the <div id="svelte"> element in src/app.html
2021-08-12 16:39:11 +00:00
target: '#svelte',
adapter: staticAdapter(),
files: {
assets: 'static'
}
2021-08-12 16:29:51 +00:00
},
preprocess: [preprocess({
"postcss": true
})]
};
export default config;