We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9854767 commit da1070aCopy full SHA for da1070a
index.js
@@ -108,7 +108,7 @@ module.exports = (api, projectOptions) => {
108
// take advantage of the vue cli api to load the --env items into process.env.
109
// we are filtering out the items, by catching the '=' sign, brought in from nsconfig.json as those don't need loaded into process.env
110
// we are also filtering out 'sourceMap' which will appear with 'tns debug'
111
- api.service.loadEnv(flags.filter((o) => !o.includes('=') && !o.includes('sourceMap')).join('.'));
+ api.service.loadEnv(flags.filter((o) => !o.includes('=') && !o.includes('sourceMap') && !o.includes('hmr')).join('.'));
112
}
113
114
// setup the traditional {N} webpack 'env' variable
0 commit comments