This commit is contained in:
robin
2022-12-01 21:48:35 +08:00
commit 879cd36baf
69 changed files with 5265 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
/*
* @Author : djkloop
* @Date : 2020-08-15 21:16:03
* @LastEditors : djkloop
* @LastEditTime : 2021-09-21 17:18:46
* @Description : 头部注释
* @FilePath : /form-create2/packages/element-ui/vue.config.js
*/
module.exports = {
pages: {
app: {
entry: 'examples/main.js',
template: 'examples/index.html',
filename: 'index.html'
}
},
configureWebpack: {
module: {
rules: [
{
test: /\.mjs$/,
include: /node_modules/,
type: 'javascript/auto'
},
]
}
}
}