从 vue build 更改资产的根目录

Change the root directory of the assets from vue build

我正在使用 Vue CLI 3.3 并为我的垂直网站构建 vue 项目,但每次构建项目时,dist/index.html 的资产总是从我的根路径加载,例如:

<script src=js/chunk-vendors.b0f460c7.js></script>

有没有办法让这些资源从当前路径加载?如

<script src=./js/chunk-vendors.b0f460c7.js></script>

您可以在 vue.config.js 中设置 publicPath(参见 https://cli.vuejs.org/config/#publicpath

module.exports = 
{
  publicPath: './',
};