因此,我尝试使用Vercel部署我的Sveltekit应用程序,但发生了以下情况:
Cloning completed: 221.226ms
Previous build cache not available
Using prebuilt build artifacts...
Error: Config file was not found at "/vercel/path0/.vercel/output/config.json"
at P8 (/var/task/sandbox.js:315:2645)
我的svelte.config.js文件:
import vercel from '@sveltejs/adapter-vercel'
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
adapter: vercel()
}
};
export default config;
正如你所看到的,我已经导入了Vercel的适配器并正在使用中。那么这里有什么问题呢?我可以解决它
我的构建命令是:pnpm run build我的输出目录是:我的安装命令是:pnpm安装
1条答案
按热度按时间pkwftd7m1#
您的输出目录应该留空(或设置为
.
),而不是.svelte-kit
-这是SvelteKit工作的地方,与Vercel无关。