mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2024-10-31 20:34:12 +01:00
18 lines
445 B
JavaScript
18 lines
445 B
JavaScript
const preprocess = require('svelte-preprocess')
|
|
const adapter = require('@sveltejs/adapter-static')
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
module.exports = {
|
|
// Consult https://github.com/sveltejs/svelte-preprocess
|
|
// for more information about preprocessors
|
|
preprocess: preprocess(),
|
|
|
|
kit: {
|
|
adapter: adapter({
|
|
fallback: 'index.html',
|
|
}),
|
|
// hydrate the <div id="svelte"> element in src/app.html
|
|
target: '#svelte',
|
|
},
|
|
}
|