laconic-console/packages/console-app/webpack.config.js
Rich Burdon daf7179e4f
Updated tabs (#52)
* Link update instructions to statusbar.

* Added KUBE Tab.
Updated formatting.
2020-10-30 14:15:01 -05:00

23 lines
476 B
JavaScript

//
// Copyright 2019 DXOS.org
//
const merge = require('webpack-merge');
const HtmlWebPackPlugin = require('html-webpack-plugin');
const commonConfig = require('./webpack-common.config');
module.exports = merge(commonConfig, {
entry: './src/main.js',
plugins: [
// https://github.com/jantimon/html-webpack-plugin#options
new HtmlWebPackPlugin({
template: './public/index.html',
templateParameters: {
title: 'Console'
}
})
]
});