From 92a37650ab84e2888d1653a20b417321c558ba8a Mon Sep 17 00:00:00 2001 From: dave-grix <58671335+dave-grix@users.noreply.github.com> Date: Tue, 10 Nov 2020 13:24:49 +0000 Subject: [PATCH] Update webpack.config.js Fix Typo --- webpack.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index 0d436c1..08f447f 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -3,7 +3,7 @@ const HtmlWebPackPlugin = require('html-webpack-plugin'); module.exports = { entry: { - app: ['./src/app.ts'], + app: ['./src/App.ts'], vendor: ['react', 'react-dom'] }, output: { @@ -29,4 +29,4 @@ module.exports = { filename: "./index.html" }) ] -}; \ No newline at end of file +};