X-Git-Url: https://gerrit.onap.org/r/gitweb?p=aai%2Fsparky-fe.git;a=blobdiff_plain;f=gulpfile.js;h=ab623507433bf2e2abdfbb569fa99cd8f2f1dec0;hp=0c6dadb9d4603d1c74c15a1f7223243f009f72a1;hb=e513a1ce93b9a70f01b62ca7560dbe52376cc5bd;hpb=bca1bdc7d52b01ede5c0e85f06cd6c64e5aaab57 diff --git a/gulpfile.js b/gulpfile.js index 0c6dadb..ab62350 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -2,8 +2,8 @@ * ============LICENSE_START======================================================= * org.onap.aai * ================================================================================ - * Copyright © 2017 AT&T Intellectual Property. All rights reserved. - * Copyright © 2017 Amdocs + * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved. + * Copyright © 2017-2018 Amdocs * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -17,8 +17,6 @@ * See the License for the specific language governing permissions and * limitations under the License. * ============LICENSE_END========================================================= - * - * ECOMP is a trademark and service mark of AT&T Intellectual Property. */ 'use strict'; @@ -92,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 = { @@ -118,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() ];