-
Notifications
You must be signed in to change notification settings - Fork 1
/
vue.config.js
59 lines (56 loc) · 1.47 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
52
53
54
55
56
57
58
59
const path = require("path");
const MonacoEditorPlugin = require("monaco-editor-webpack-plugin");
function resolve(dir) {
return path.join(__dirname, ".", dir);
}
module.exports = {
configureWebpack: {
devtool: "source-map",
resolve: {
extensions: [".js", ".vue", ".json", ".ts"],
alias: {
vue$: "vue/dist/vue.esm.js",
"@": resolve("src"),
components: resolve("src/components"),
extensions: resolve("src/extensions"),
menus: resolve("src/menus"),
nodes: resolve("src/nodes"),
marks: resolve("src/marks"),
plugins: resolve("src/plugins"),
queries: resolve("src/queries"),
assets: resolve("src/assets"),
commands: resolve("src/commands"),
utils: resolve("src/utils"),
"@editure": resolve("src"),
},
},
optimization: {
splitChunks: {
chunks: "all",
minSize: 30000,
maxSize: 0,
minChunks: 1,
maxAsyncRequests: 5,
maxInitialRequests: 3,
automaticNameDelimiter: "~",
name: true,
cacheGroups: {
vendors: {
test: /[\\/]node_modules[\\/]/,
priority: -10,
},
default: {
minChunks: 2,
priority: -20,
reuseExistingChunk: true,
},
},
},
},
plugins: [
new MonacoEditorPlugin({
languages: ["javascript", "html", "css", "typescript"],
}),
],
},
};