8d47410fe5
"npm run build" now builds an artifact optimized for production use. The removes dead code, and minizes the result. The size of the bundle shrinks from about 14MB to 2MB. The previous build command is moved to "npm run build:dev". Change-Id: I21430f06049c4eeeb4a66c7143da8c2919fb5a24 Closes-Bug: 1688610
36 lines
1.1 KiB
JavaScript
36 lines
1.1 KiB
JavaScript
const webpack = require('webpack');
|
|
const merge = require('webpack-merge');
|
|
const CommonConfig = require('./webpack.common.js');
|
|
|
|
const license = `TripleO UI
|
|
https://github.com/openstack/tripleo-ui
|
|
|
|
Copyright 2017 Red Hat Inc.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.`;
|
|
|
|
module.exports = env => {
|
|
return merge(CommonConfig, {
|
|
devtool: 'source-map',
|
|
plugins: [
|
|
new webpack.optimize.UglifyJsPlugin({
|
|
sourceMap: true
|
|
}),
|
|
new webpack.BannerPlugin(license),
|
|
new webpack.DefinePlugin({
|
|
'process.env.NODE_ENV': JSON.stringify('production')
|
|
})
|
|
]
|
|
});
|
|
};
|