config.kit.adapter 应该是具有 "adapt" 方法的对象
config.kit.adapter should be an object with an "adapt" method
我想在我的 Svelte Kit 应用程序中使用 @sveltejs/adapter-static(想把它变成 SPA)。
我用 npm i @sveltejs/adapter-static.
安装了静态适配器
svelte.config.cjs 中的代码如下所示
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'
}),
当我使用 npm run dev
启动我的应用程序时,出现以下错误:
config.kit.adapter should be an object with an "adapt" method
我该如何解决这个问题?
只需使用以下命令安装它:
npm i -D @sveltejs/adapter-static@next
我想在我的 Svelte Kit 应用程序中使用 @sveltejs/adapter-static(想把它变成 SPA)。 我用 npm i @sveltejs/adapter-static.
安装了静态适配器svelte.config.cjs 中的代码如下所示
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'
}),
当我使用 npm run dev
启动我的应用程序时,出现以下错误:
config.kit.adapter should be an object with an "adapt" method
我该如何解决这个问题?
只需使用以下命令安装它:
npm i -D @sveltejs/adapter-static@next