aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/gulpfile.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/gulpfile.js')
-rw-r--r--frontend/gulpfile.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/gulpfile.js b/frontend/gulpfile.js
index faf6a45..1207d36 100644
--- a/frontend/gulpfile.js
+++ b/frontend/gulpfile.js
@@ -42,7 +42,7 @@ gulp.task("webpack-build", () => {
config.plugins.unshift(new webpack.DefinePlugin({ "process.env": { NODE_ENV: '"production"' } }));
config.plugins.unshift(new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/));
gulp
- .src("./src/app.js")
+ .src("./src/bootstrap.js")
.pipe(gwebpack(config, webpack))
.pipe(gulp.dest("./dest/assets"));
});