根目录里创建个vue.config.js文件输入一下代码
module.exports = {
// 公共路径(必须有的,不然打包css和js路径问题不加载)
publicPath: './',
// 输出文件目录
outputDir: 'dist',
// 静态资源存放的文件夹(相对于ouputDir)
assetsDir: 'assets'
// // 跨域
// devServer: {
// proxy: 'http://192.168.10.254:12101'
// }
}
评论 (0)