-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvue.config.js
More file actions
32 lines (31 loc) 路 730 Bytes
/
Copy pathvue.config.js
File metadata and controls
32 lines (31 loc) 路 730 Bytes
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
const MonacoEditorPlugin = require('monaco-editor-webpack-plugin');
module.exports = {
chainWebpack: config => {
config.plugin('monaco-editor').use(MonacoEditorPlugin, [
{
languages: ['json', 'javascript', 'html', 'css']
}
]);
},
"transpileDependencies": [
"vuetify"
],
pluginOptions: {
electronBuilder: {
builderOptions: {
appId: "com.yamiprod.visualnovelcreator",
productName : "Visual Novel Creator",
win: {
icon: 'public/temporarylogo.png'
},
extraFiles: [
{
from: "./public/packageWindows/",
"to": "./packageWindows/"
}
]
},
nodeIntegration: true
}
}
}