aboutsummaryrefslogtreecommitdiff
path: root/webpack.config.js
diff options
context:
space:
mode:
authorNoah Loomans <noahloomans@gmail.com>2017-12-14 18:54:00 +0100
committerNoah Loomans <noahloomans@gmail.com>2017-12-14 18:54:00 +0100
commit569b2969d530f08e55798c5cb3079948c7c037cd (patch)
treef90c5c524f1d3536a1f6ab665a7350739f590b7a /webpack.config.js
parent8e9d5e98793f7594a8a1a1b5956163eca6795164 (diff)
Use .js extention instead of .jsx
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/webpack.config.js b/webpack.config.js
index 6db6543..061f0d1 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -2,7 +2,7 @@ const path = require('path');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const js = {
- entry: './src/client/react/index.jsx',
+ entry: './src/client/react/index.js',
output: {
path: path.resolve(__dirname, 'src/client/static'),
filename: 'bundle.js',