Vitals one day?

This commit is contained in:
luke-hagar-sp
2022-12-17 21:48:51 -06:00
parent 9c693bb2e7
commit bbef870e1f
5 changed files with 367 additions and 46 deletions

View File

@@ -1,5 +1,5 @@
import adapter from '@sveltejs/adapter-auto';
import preprocess from "svelte-preprocess";
import adapter from '@sveltejs/adapter-vercel';
import preprocess from 'svelte-preprocess';
/** @type {import('@sveltejs/kit').Config} */
const config = {
@@ -8,17 +8,16 @@ const config = {
},
preprocess: [
preprocess({
postcss: true,
}),
postcss: true
})
],
vitePlugin: {
experimental: {
inspector: {
holdMode: true,
holdMode: true
}
}
}
}
};
export default config;