config.kit.adapter should be an object with an “adapt” method
I want to use the @sveltejs/adapter-static in my Svelte Kit app (want to turn it into an SPA).
I installed the adapter static with npm i @sveltejs/adapter-static.
The code in the svelte.config.cjs looks like this
kit: {
// By default, `npm run build` will create a standard Node app.
// You can create optimized builds for different platforms by
// specifying a different adapter
adapter: adapter({
fallback: 'app.html'
}),
When I start my app with npm run dev
I get the following error:
config.kit.adapter should be an object with an "adapt" method
How can I fix this?
just install it with the following command:
npm i -D @sveltejs/[email protected]
credits goes to: https://github.com/GrygrFlzr
The answers/resolutions are collected from stackoverflow, are licensed under cc by-sa 2.5 , cc by-sa 3.0 and cc by-sa 4.0 .