Change webpack alias for entry js file.

This commit is contained in:
Dillon Kearns 2019-09-11 05:31:32 -07:00
parent 40b920853c
commit 0349a1c1db

View File

@ -106,7 +106,7 @@ function printProgress(progress, message) {
}
function webpackOptions(production, routes, { debug, manifestConfig }) {
const common = {
entry: { hello: "./index.js" },
entry: "./index.js",
mode: production ? "production" : "development",
plugins: [
new AddFilesPlugin(),