mirror of
https://github.com/LukeHagar/LukeHagar.com.git
synced 2025-12-06 04:20:17 +00:00
25 lines
356 B
JavaScript
25 lines
356 B
JavaScript
import adapter from '@sveltejs/adapter-auto';
|
|
import preprocess from "svelte-preprocess";
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
kit: {
|
|
adapter: adapter()
|
|
},
|
|
preprocess: [
|
|
preprocess({
|
|
postcss: true,
|
|
}),
|
|
],
|
|
vitePlugin: {
|
|
experimental: {
|
|
inspector: {
|
|
holdMode: true,
|
|
}
|
|
}
|
|
}
|
|
|
|
};
|
|
|
|
export default config;
|