diff options
author | andre.schmid <andre.schmid@est.tech> | 2020-04-30 16:56:36 +0100 |
---|---|---|
committer | André Schmid <andre.schmid@est.tech> | 2020-05-01 10:17:56 +0000 |
commit | b0982c12cc9fa0d8e642f4475ec293c7b6512c08 (patch) | |
tree | 01ef39ba80288c9ff4185585f3f39e24fc34eac7 /openecomp-ui/webpack.config.js | |
parent | 31c64b3443fb1a76d1cfc7afc0db1e51f1ffda79 (diff) |
Fix sdc-FE /onboarding war listing
It creates a index.html page that will end up in the
onboarding-FE .war file. When the /onboarding context
is accessed, a blank page will show up instead of the
contents of the .war.
Change-Id: I0fb4be28e193e6e6bbd58c1af9a49d5750981b7e
Issue-ID: SDC-3000
Signed-off-by: andre.schmid <andre.schmid@est.tech>
Diffstat (limited to 'openecomp-ui/webpack.config.js')
-rw-r--r-- | openecomp-ui/webpack.config.js | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/openecomp-ui/webpack.config.js b/openecomp-ui/webpack.config.js index 28ba11bb99..f3b410e54e 100644 --- a/openecomp-ui/webpack.config.js +++ b/openecomp-ui/webpack.config.js @@ -3,7 +3,7 @@ const path = require('path'); const CleanWebpackPlugin = require('clean-webpack-plugin'); const { DefinePlugin, HotModuleReplacementPlugin } = require('webpack'); - +const HtmlWebpackPlugin = require('html-webpack-plugin'); const devConfig = require('./tools/getDevConfig'); const proxyServer = require('./proxy-server'); const fs = require('fs'); @@ -46,7 +46,7 @@ module.exports = (env, argv) => { }, output: { path: path.join(__dirname, 'dist'), - publicPath: DEV ? publicPath : '/onboarding/', + publicPath: DEV ? publicPath : './', filename: DEV ? '[name].js' : '[name]_' + language + '.js' }, module: { @@ -130,6 +130,10 @@ module.exports = (env, argv) => { new DefinePlugin({ DEBUG: DEV === true, DEV: DEV === true + }), + new HtmlWebpackPlugin({ + filename: 'index.html', + template: __dirname + '/src/index.html' }) ] }; |