mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2024-12-22 08:16:28 +00:00
14 lines
339 B
JavaScript
14 lines
339 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(),
|
|
|
|
kit: {
|
|
// hydrate the <div id="svelte"> element in src/app.html
|
|
target: '#svelte'
|
|
}
|
|
};
|