Skip to content

Commit 47824a2

Browse files
author
Barthélémy Ledoux
committed
move config where it is due
1 parent f5edad0 commit 47824a2

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

babel.rollup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module.exports = {
2-
presets: ["@vue/app"]
2+
presets: [["@vue/app", { useBuiltIns: false }]]
33
};

rollup.config.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,8 @@ export default {
2424
commonjs(),
2525
babel({
2626
babelrc: false,
27-
// avoid using babel.config.js that kills es6 modules for ie compatibility
27+
// avoid using babel.config.js. It kills es6 modules for ie compatibility
2828
configFile: "./babel.rollup.js",
29-
presets: [["@vue/babel-preset-app", { useBuiltIns: false }]],
3029
extensions: [".js"],
3130
runtimeHelpers: true
3231
}),

0 commit comments

Comments
 (0)