Files
sveltesociety.dev/svelte.config.cjs
Keviin Åberg Kultalahti 4ef584e8b4 initial commit
2021-05-03 11:56:52 +00:00

18 lines
369 B
JavaScript

const preprocess = require('svelte-preprocess');
/** @type {import('@sveltejs/kit').Config} */
module.exports = {
// Consult https://github.com/sveltejs/svelte-preprocess
// for more information about preprocessors
preprocess: [
preprocess({
postcss: true
}),
],
kit: {
// hydrate the <div id="svelte"> element in src/app.html
target: '#svelte'
}
};