Reputation: 486
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?
Upvotes: 24
Views: 4727
Reputation: 603
just install it with the following command:
npm i -D @sveltejs/adapter-static@next
credits goes to: https://github.com/GrygrFlzr
Upvotes: 47