-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue.config.js
55 lines (47 loc) · 1.18 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
const webpack = require("webpack");
const fs = require("fs");
const packageJson = fs.readFileSync("./package.json");
const appName = JSON.parse(packageJson).name || "Unnamed";
const appVersion = JSON.parse(packageJson).version || 0;
const appDescription = JSON.parse(packageJson).description || "";
let plugins = [
new webpack.DefinePlugin({
"process.env": {
APP_NAME: JSON.stringify(appName),
APP_VERSION: JSON.stringify(appVersion),
APP_COMMENTS: JSON.stringify(appDescription),
},
}),
];
if (process.env.BUNDLE_ANALYSIS === "1") {
const BundleAnalyzerPlugin =
require("webpack-bundle-analyzer").BundleAnalyzerPlugin;
plugins.push(new BundleAnalyzerPlugin());
}
module.exports = {
configureWebpack: () => {
return {
plugins: plugins,
};
},
// Enable Hot-Reloading with vue-cli-service serve
devServer: {
watchOptions: {
poll: true,
},
},
// Support for IE 11/Safari 9
transpileDependencies: ["vuetify"],
// PWA specific configuration
pwa: {
name: "My front app",
},
pluginOptions: {
i18n: {
locale: "en",
fallbackLocale: "en",
localeDir: "locales",
enableInSFC: true,
},
},
};