From bcbfa193f547afde8a4c6b17e2fc29be042c8ff6 Mon Sep 17 00:00:00 2001 From: Jaco Date: Thu, 17 Jun 2021 09:51:53 +0300 Subject: [PATCH] Update babel config require (#486) --- packages/example-react/webpack.config.js | 2 +- packages/example-vue/webpack.config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/example-react/webpack.config.js b/packages/example-react/webpack.config.js index db52cc5e..df350d32 100644 --- a/packages/example-react/webpack.config.js +++ b/packages/example-react/webpack.config.js @@ -17,7 +17,7 @@ module.exports = { use: [ { loader: 'babel-loader', - options: require('../../babel.config.js') + options: require('../../babel.config.cjs') } ] } diff --git a/packages/example-vue/webpack.config.js b/packages/example-vue/webpack.config.js index 1d20526a..ed12c62d 100644 --- a/packages/example-vue/webpack.config.js +++ b/packages/example-vue/webpack.config.js @@ -18,7 +18,7 @@ module.exports = { use: [ { loader: 'babel-loader', - options: require('../../babel.config.js') + options: require('../../babel.config.cjs') } ] },