我刚用 Astro 开始了一个博客模板项目。 https://astro.build/
我的项目文件夹是 C:/web/astro-test-1/ 并且我想将我的构建部署到 C:/wamp64/www/astro/ 的本地服务器npm run build
。
我将 astro.config.mjs 设置如下:
dist: './../../wamp64/www/astro'
此构建仅在文件夹不存在时才有效。
我的错误:
[build] Error: Cannot delete files/directories outside the current working directory. Can be overridden with the `force` option.
在哪里以及如何设置force
选项?