summaryrefslogtreecommitdiffstats
path: root/gulpfile.js
diff options
context:
space:
mode:
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js11
1 files changed, 3 insertions, 8 deletions
diff --git a/gulpfile.js b/gulpfile.js
index 927d2a7..ab62350 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -90,7 +90,7 @@ gulp.task('prod', () => {
webpackProductionConfig.cache = true;
webpackProductionConfig.output = {
path: localPath.join(__dirname, 'dist'),
- publicPath: '/services/aai/webapp/',
+ publicPath: '',
filename: '[name].js'
};
webpackProductionConfig.resolveLoader = {
@@ -116,13 +116,8 @@ gulp.task('prod', () => {
};
webpackProductionConfig.plugins = [
new webpack.DefinePlugin({
- 'process.env': {
- // This has effect on the react lib size
- 'NODE_ENV': JSON.stringify('production')
- },
- DEBUG: false,
- DEV: false
- }),
+ 'process.env.NODE_ENV': JSON.stringify('production')
+ }),
new webpack.optimize.DedupePlugin(),
new webpack.optimize.UglifyJsPlugin()
];