美文网首页
vue.config.js

vue.config.js

作者: Hello杨先生 | 来源:发表于2019-11-13 16:46 被阅读0次
const path = require('path')

module.exports = {
    publicPath: './', 
    outputDir: 'dist', //打包输出目录默认dist
    assetsDir: '', //放置生成的静态资源 默认 ''
    //设置静态资源路径
    devServer: {
        contentBase: path.join(__dirname, 'public')
    }
}

相关文章

网友评论

      本文标题:vue.config.js

      本文链接:https://www.haomeiwen.com/subject/jyckictx.html