mirror of
https://github.com/LukeHagar/sveltesociety.dev.git
synced 2025-12-09 20:57:44 +00:00
18 lines
369 B
JavaScript
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'
|
|
}
|
|
};
|