aboutsummaryrefslogtreecommitdiff
path: root/vnext/webpack.config.js
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2017-12-20 14:57:52 +0300
committerGravatar Vitaly Takmazov2023-01-13 10:37:52 +0300
commitaaa6a3a3e3d6c73139fd44498e034c1460ecfcae (patch)
tree5d828069484fe5af49bec8b0540f6a5ae6a64fe9 /vnext/webpack.config.js
parent359f345ab5739bbd258da9b8a0b053005e392ead (diff)
jsx -> js
Diffstat (limited to 'vnext/webpack.config.js')
-rw-r--r--vnext/webpack.config.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/vnext/webpack.config.js b/vnext/webpack.config.js
index 3935cc01..d86fa182 100644
--- a/vnext/webpack.config.js
+++ b/vnext/webpack.config.js
@@ -18,7 +18,7 @@ module.exports = {
module: {
loaders: [
{ test: /\.css$/, loader: "style-loader!css-loader" },
- { test: /\.js(x?)$/, exclude: /node_modules/, loader: "babel-loader" },
+ { test: /\.js$/, exclude: /node_modules/, loader: "babel-loader" },
{ test: /\.(jpe?g|png|gif|svg)$/i, loaders: [
'file-loader?hash=sha512&digest=hex&name=[hash].[ext]',
'image-webpack-loader'