Files
tripleo-ui/webpack.prod.js
Honza Pokorny 9b4903e0e1 Upgrade webpack to 4
* Upgrade webpack to 4.0.1
* Upgrade webpack-dev-server to 3.1.0
* Introduce webpack-cli
* Introduce mode configuration
* Remove uglify plugin configuration

Change-Id: I5ce1f76eaadb0a31ea657e19d9fad06c1c579816
2018-03-02 11:07:27 -04:00

31 lines
929 B
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, {
mode: 'production',
devtool: 'source-map',
plugins: [
new webpack.BannerPlugin(license)
]
});
};