-
Notifications
You must be signed in to change notification settings - Fork 0
/
vue.config.js
39 lines (38 loc) · 1.07 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
const MonocoEditorPlugin = require('monaco-editor-webpack-plugin')
const webpack = require('webpack');
const path = require('path');
module.exports = {
assetsDir: 'static',
baseUrl: '/',
outputDir: 'docs',
configureWebpack: {
node: {
process: true,
},
plugins: [
new MonocoEditorPlugin({
// https://github.com/Microsoft/monaco-editor-webpack-plugin#options
// Include a subset of languages support
// Some language extensions like typescript are so huge that may impact build performance
// e.g. Build full languages support with webpack 4.0 takes over 80 seconds
// Languages are loaded on demand at runtime
languages: ['yaml', 'javascript', 'css', 'html'],
options: {
automaticLayout: true,
wordWrap: 'on'
}
})
]
},
chainWebpack: config => {
config.module
.rule('shell')
.test(/\.(sh|bat|cmd)(\?.*)?$/)
.use('file')
.loader('file-loader')
.options({
name: '[name].[ext]',
outputPath: 'public/'
})
}
};