一.
(打包命令)要在修改 package.json 中的 scripts 属性,添加 build,
二.
根目录下创建 ***vue.config.JS***文件,添加如下配置

module.exports = {
    publicPath: process.env.NODE_ENV === 'production'
        ? './'
        : '/'
}

在运行npm run build进行打包
完成后直接运行dist文件夹内的index.HTML文件查看.

Logo

前往低代码交流专区

更多推荐