mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-06 12:57:46 +00:00
🎉 Kit is live! 🎉 Merge prior to #9030. Manually updates Kit to latest (will need to have a commit pushed after 1.0 goes live on NPM). Co-authored-by: Steven <steven@ceriously.com>
11 lines
171 B
JavaScript
11 lines
171 B
JavaScript
import adapter from '@sveltejs/adapter-vercel';
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
kit: {
|
|
adapter: adapter()
|
|
}
|
|
};
|
|
|
|
export default config;
|