-
Notifications
You must be signed in to change notification settings - Fork 0
/
vue.config.js
47 lines (47 loc) · 1.53 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
module.exports = {
configureWebpack: {
node: {
__dirname: false
},
},
chainWebpack: config => {
config.externals = {
"@google-cloud": "@google-cloud",
"@google-cloud/speech": "@google-cloud/speech",
"@google-cloud/translate": "@google-cloud/translate"
}
},
// // config.module
// // .rule("relocator")
// // .test(/\.(m?js|node)$/)
// // .use("@vercel/webpack-asset-relocator-loader")
// // .loader("@vercel/webpack-asset-relocator-loader")
// // .options({
// // // optional, base folder for asset emission (eg assets/name.ext)
// // outputAssetBase: "assets",
// // //filterAssetBase: "node_modules",
// // // optional, permit entire __dirname emission
// // // eg `const nonAnalyzable = __dirname` can emit everything in the folder
// // emitDirnameAll: true,
// // // optional, permit entire filterAssetBase emission
// // // eg `const nonAnalyzable = process.cwd()` can emit everything in the cwd()
// // emitFilterAssetBaseAll: false,
// // cwd: process.cwd(), // optional, default
// // debugLog: true // optional, default
// // })
// // .end();
// //
// // config.module
// // .rule("htmlyeeter")
// // .test(/\.html$/)
// // .use("html-loader")
// // .loader("html-loader")
// // .end();
// // },
transpileDependencies: ["vuetify"],
pluginOptions: {
electronBuilder: {
nodeIntegration: true
}
}
};