The vue project cannot be run after being packaged

The console reports an error: 

Solution: modify the file config/index.js to find  assetsPublicPath

build: {
    ...
    //assetsPublicPath: '/',
    assetsPublicPath: './',//修改
    ....
}

 Repack and run

Guess you like

Origin blog.csdn.net/SmartJunTao/article/details/108536076