mirror of
https://github.com/sveltejs/svelte.git
synced 2024-11-25 09:09:35 +01:00
fe8a9ce31d
Co-authored-by: Rich Harris <rich.harris@vercel.com> Co-authored-by: Simon Holthausen <simon.holthausen@vercel.com> Co-authored-by: Dominic Gannaway <dg@domgan.com>
21 lines
289 B
JavaScript
21 lines
289 B
JavaScript
import adapter from '@sveltejs/adapter-vercel';
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
export default {
|
|
kit: {
|
|
adapter: adapter({
|
|
runtime: 'nodejs18.x'
|
|
}),
|
|
|
|
prerender: {
|
|
handleMissingId(details) {
|
|
// do nothing
|
|
}
|
|
}
|
|
},
|
|
|
|
vitePlugin: {
|
|
inspector: true
|
|
}
|
|
};
|