mirror of
https://github.com/Damillora/Rinze.git
synced 2024-11-22 03:37:33 +00:00
16 lines
406 B
JavaScript
16 lines
406 B
JavaScript
const preprocess = require('svelte-preprocess');
|
|
const node = require('@sveltejs/adapter-node');
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
module.exports = {
|
|
// Consult https://github.com/sveltejs/svelte-preprocess
|
|
// for more information about preprocessors
|
|
preprocess: preprocess(),
|
|
|
|
kit: {
|
|
adapter: node(),
|
|
// hydrate the <div id="svelte"> element in src/app.html
|
|
target: '#svelte'
|
|
}
|
|
};
|