forked from NVIDIA/webui-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvue.config.js
More file actions
179 lines (168 loc) · 5.93 KB
/
Copy pathvue.config.js
File metadata and controls
179 lines (168 loc) · 5.93 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
const CompressionPlugin = require('compression-webpack-plugin');
const webpack = require('webpack');
const LimitChunkCountPlugin = webpack.optimize.LimitChunkCountPlugin;
// DRY: Generate SCSS additionalData for sass-loader
// Shared between sass and scss loaders
const getScssAdditionalData = () => {
const envName = process.env.VUE_APP_ENV_NAME;
const hasCustomStyles = process.env.CUSTOM_STYLES === 'true';
if (hasCustomStyles && envName !== undefined) {
return `
// motion first so env styles can reference timing/easing tokens
@import "@/assets/styles/bmc/helpers/motion";
@import "@/assets/styles/bmc/helpers/colors";
@import "@/assets/styles/bmc/helpers/variables";
@import "@/assets/styles/bmc/helpers/functions";
// env overrides (colors, fonts, etc.)
@import "@/env/assets/styles/_${envName}";
@import "@/assets/styles/bootstrap/_helpers";
`;
} else {
return `
@import "@/assets/styles/bmc/helpers/motion";
@import "@/assets/styles/bmc/helpers/colors";
@import "@/assets/styles/bmc/helpers/variables";
@import "@/assets/styles/bmc/helpers/functions";
@import "@/assets/styles/bootstrap/_helpers";
`;
}
};
module.exports = {
css: {
loaderOptions: {
sass: {
additionalData: getScssAdditionalData(),
},
scss: {
additionalData: getScssAdditionalData(),
},
},
},
devServer: {
// Set DEV_HTTPS=false to run with HTTP
// ref https://webpack.js.org/configuration/dev-server/#devserverserver
server:
process.env.DEV_HTTPS === 'false' ? { type: 'http' } : { type: 'https' },
proxy: {
'/': {
target: process.env.BASE_URL,
ws: true,
onProxyRes: (proxyRes) => {
delete proxyRes.headers['strict-transport-security'];
},
},
'/styles/redfish.css': {
target: process.env.BASE_URL,
ws: true,
onProxyRes: (proxyRes) => {
// This header is ignored in the browser so removing
// it so we don't see warnings in the browser console
delete proxyRes.headers['strict-transport-security'];
},
}
},
port: 8000,
},
productionSourceMap: false,
chainWebpack: (config) => {
config.module
.rule('vue')
.use('vue-svg-inline-loader')
.loader('vue-svg-inline-loader');
config.module
.rule('ico')
.test(/\.ico$/)
.use('file-loader')
.loader('file-loader')
.options({
name: '[name].[contenthash:8].[ext]',
});
config.plugins.delete('preload');
if (process.env.NODE_ENV === 'production') {
config.plugin('html').tap((options) => {
options[0].filename = 'index.[hash:8].html';
return options;
});
}
},
configureWebpack: (config) => {
config.plugins.push(
new LimitChunkCountPlugin({
maxChunks: 1,
}),
);
config.optimization.splitChunks = {
cacheGroups: {
default: false,
},
};
const crypto = require('crypto');
const crypto_orig_createHash = crypto.createHash;
crypto.createHash = (algorithm) =>
crypto_orig_createHash(algorithm == 'md4' ? 'sha256' : algorithm);
const envName = process.env.VUE_APP_ENV_NAME;
const hasCustomStore = process.env.CUSTOM_STORE === 'true';
const hasCustomRouter = process.env.CUSTOM_ROUTER === 'true';
const hasCustomAppNav = process.env.CUSTOM_APP_NAV === 'true';
if (envName !== undefined) {
if (hasCustomStore) {
// If env has custom store, resolve all store modules. Currently found
// in src/router/index.js src/store/api.js and src/main.js
config.resolve.alias['./store$'] = `@/env/store/${envName}.js`;
config.resolve.alias['../store$'] = `@/env/store/${envName}.js`;
}
if (hasCustomRouter) {
// If env has custom router, resolve routes in src/router/index.js
config.resolve.alias['./routes$'] = `@/env/router/${envName}.js`;
}
if (hasCustomAppNav) {
// If env has custom AppNavigation, resolve AppNavigationMixin module in src/components/AppNavigation/AppNavigation.vue
config.resolve.alias['./AppNavigationMixin$'] =
`@/env/components/AppNavigation/${envName}.js`;
}
}
if (process.env.NODE_ENV === 'production') {
config.plugins.push(
new CompressionPlugin({
deleteOriginalAssets: true,
}),
);
}
config.performance = {
hints: 'warning',
maxEntrypointSize: 512000,
maxAssetSize: 512000,
};
config.optimization.runtimeChunk = false;
// Define Vue 3 compile-time feature flags
// These flags must be explicitly defined to avoid Vue warnings and optimize bundle size
config.plugins.push(
new webpack.DefinePlugin({
// Enable Options API support (required - this codebase uses Options API extensively)
// Setting to true includes Options API in the bundle (~3kb gzipped)
// Cannot be disabled until full migration to Composition API
__VUE_OPTIONS_API__: JSON.stringify(true),
// Disable Vue Devtools in production builds for security and performance
// Devtools automatically enabled in development mode regardless of this flag
__VUE_PROD_DEVTOOLS__: JSON.stringify(false),
// Disable detailed hydration mismatch warnings in production
// This is a SPA (not SSR), so hydration warnings don't apply
// Reduces bundle size and eliminates unnecessary runtime checks
__VUE_PROD_HYDRATION_MISMATCH_DETAILS__: JSON.stringify(false),
// Expose session storage toggle to client code
'process.env.STORE_SESSION': JSON.stringify(
process.env.STORE_SESSION || '',
),
'process.env.VUE_APP_STORE_SESSION': JSON.stringify(
process.env.VUE_APP_STORE_SESSION || '',
),
}),
);
},
pluginOptions: {
i18n: {
localeDir: 'locales',
enableInSFC: true,
},
},
};