aboutsummaryrefslogtreecommitdiff
path: root/vnext/webpack.config.js
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2018-03-15 20:11:33 +0300
committerGravatar Vitaly Takmazov2023-01-13 10:37:52 +0300
commit9d42f009bbf7c073d3a48bf65bb9b12775d68b3d (patch)
tree5a2f6faa73cc1915a167597631b73f6a0cbd67f9 /vnext/webpack.config.js
parenta87c3fcaafc8c839ae1263f84502634ef61081ec (diff)
LoginButton
Diffstat (limited to 'vnext/webpack.config.js')
-rw-r--r--vnext/webpack.config.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/vnext/webpack.config.js b/vnext/webpack.config.js
index ce4995eb..8d8060a6 100644
--- a/vnext/webpack.config.js
+++ b/vnext/webpack.config.js
@@ -5,9 +5,9 @@ const internalIp = require('internal-ip');
module.exports = {
entry: {
"vendor": ['react', 'react-dom', 'react-markdown', 'whatwg-fetch'],
- "app": [
+ "App": [
'file-loader?name=index.html!./src/views/index.html',
- __dirname + "/src/app.js",
+ __dirname + "/src/App.js",
__dirname + "/src/style/main.css"
]
},