Wrong file address after vue-cli3 is packaged

css and js cannot be found after packing with vue-cli3

this is the packaged index.html
clipboard.png

The path in

is wrong. How should I write it in vue.config.js?

Nov.22,2021

https://cli.vuejs.org/zh/conf.


create a new vue.config.js in the root directory and then content:

module.exports = {
    baseUrl: './'
}

/ / repackage and by the way post your bable.config to change url-loader this type of configuration has


which css was not found? Under the dist directory, isn't it?

Menu