sveltekit-demo / svelte.config.js
julien-c's picture
julien-c HF staff
Trying again :)
2f413b9 verified
raw history blame
No virus
527 Bytes
import adapter from '@sveltejs/adapter-static';
import preprocess from 'svelte-preprocess';
const dev = process.env.NODE_ENV === 'development';
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://github.com/sveltejs/svelte-preprocess
// for more information about preprocessors
preprocess: preprocess(),
kit: {
paths: {
base: dev ? '' : '/build',
},
adapter: adapter(),
// hydrate the <div id="svelte"> element in src/app.html
target: '#svelte'
}
};
export default config;