diff options
Diffstat (limited to 'vnext/webpack.config.js')
-rw-r--r-- | vnext/webpack.config.js | 4 |
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" ] }, |