We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6857aac commit 48be61bCopy full SHA for 48be61b
lib/webpack/createBaseConfig.js
@@ -166,8 +166,11 @@ module.exports = function createBaseConfig ({
166
.use('babel-loader')
167
.loader('babel-loader')
168
.options({
169
- // do not pick local project babel config
+ // do not pick local project babel config (.babelrc)
170
babelrc: false,
171
+ // do not pick local project babel config (babel.config.js)
172
+ // ref: http://babeljs.io/docs/en/config-files
173
+ configFile: false,
174
presets: [
175
require.resolve('@vue/babel-preset-app')
176
]
0 commit comments