mirror of
https://github.com/apricote/ein-pfeil-am-rechten-fleck.de.git
synced 2026-01-13 13:01:02 +00:00
22 lines
493 B
JavaScript
22 lines
493 B
JavaScript
|
|
const sveltePreprocess = require('svelte-preprocess');
|
||
|
|
const vercel = require('@sveltejs/adapter-vercel');
|
||
|
|
const pkg = require('./package.json');
|
||
|
|
|
||
|
|
/** @type {import('@sveltejs/kit').Config} */
|
||
|
|
module.exports = {
|
||
|
|
// Consult https://github.com/sveltejs/svelte-preprocess
|
||
|
|
// for more information about preprocessors
|
||
|
|
preprocess: [
|
||
|
|
sveltePreprocess({
|
||
|
|
postcss: true
|
||
|
|
})
|
||
|
|
],
|
||
|
|
|
||
|
|
kit: {
|
||
|
|
adapter: vercel(),
|
||
|
|
|
||
|
|
// hydrate the <div id="svelte"> element in src/app.html
|
||
|
|
target: '#svelte'
|
||
|
|
}
|
||
|
|
};
|