thomaswilson-sveltekit/svelte.config.js

20 lines
439 B
JavaScript
Raw Normal View History

2022-04-16 10:43:45 +00:00
import adapter from '@sveltejs/adapter-netlify';
import preprocess from 'svelte-preprocess';
/** @type {import('@sveltejs/kit').Config} */
const config = {
extensions: ['.svelte', '.md'],
// Consult https://github.com/sveltejs/svelte-preprocess
// for more information about preprocessors
2025-03-13 18:07:12 +00:00
preprocess: [preprocess()],
2022-04-16 10:43:45 +00:00
kit: {
adapter: adapter({ split: false }),
env: {
publicPrefix: 'PUBLIC_'
}
2022-04-16 10:43:45 +00:00
}
};
export default config;