-
Notifications
You must be signed in to change notification settings - Fork 0
/
vue.config.js
51 lines (51 loc) · 1.48 KB
/
vue.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*
* @Author: your name
* @Date: 2020-12-08 11:51:27
* @LastEditTime: 2021-04-21 10:39:55
* @LastEditors: your name
* @Description: webpack配置
* @FilePath: \form-design\vue.config.js
*/
const IS_PRODUCTION = process.env.NODE_ENV === 'production'
const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin')
module.exports = {
lintOnSave: IS_PRODUCTION ? true : 'error',
runtimeCompiler: true,
pages: {
index: {
// page 的入口
entry: 'src/main.js',
// 模板来源
template: 'public/index.html',
// 在 dist/index.html 的输出
filename: 'index.html',
// 当使用 title 选项时,
// template 中的 title 标签需要是 <title><%= htmlWebpackPlugin.options.title %></title>
title: '表单设计器',
// 在这个页面中包含的块,默认情况下会包含
// 提取出来的通用 chunk 和 vendor chunk。
chunks: ['chunk-vendors', 'chunk-common', 'index'],
productionSourceMap: false
},
preview: 'src/views/preview/main.js'
// preview: {
// entry: 'src/views/preview/main.js',
// template: 'public/preview.html',
// filename: 'preview.html',
// title: '表单设计器-预览页',
// chunks: ['chunk-vendors', 'chunk-common', 'preview']
// }
},
css: {
loaderOptions: {
less: {
lessOptions: {
javascriptEnabled: true
}
}
}
},
configureWebpack: {
plugins: [new MonacoWebpackPlugin()]
}
}