mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-06 12:57:46 +00:00
While we already have support for [SvelteKit](https://sveltekit-delta.vercel.app) on Vercel with the [File System API](https://vercel.com/docs/more/adding-your-framework), this makes the Svelte logo show up and adds an example. I also updated the Svelte example to match their default template and guide the user to use SvelteKit if they want functions. https://sveltekit.examples.vercel.com
9 lines
128 B
JavaScript
9 lines
128 B
JavaScript
import vercel from '@sveltejs/adapter-vercel';
|
|
|
|
export default {
|
|
kit: {
|
|
adapter: vercel(),
|
|
target: '#svelte',
|
|
},
|
|
};
|