我想使用indexPath
选项将vue-cli-service build
选项设置为--dest
命令。
我应该制作两个类似的前端Web项目,并且我希望它们具有许多相同的组件。
所以我想像这样使用entry file
选项进行动态构建
vue-cli-services build --dest ../proect1/static project1_main.js
vue-cli-services build --dest ../proect2/static project2_main.js
我想更改index.html
的路径,并且我知道此选项可以帮助您
// vue.config.js
module.exports = {
indexPath: '../index.html'
}
但是我发现如果我在vue-cli-services build
中使用某些选项(--dest),vue.config.js
文件将被忽略。
如何设置'indexPath'选项?谢谢。