laconic-console/packages/console-app/webpack.config.js

23 lines
477 B
JavaScript
Raw Normal View History

//
// Copyright 2019 DxOS
//
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: {
2020-05-23 23:01:17 +00:00
title: 'DxOS Console'
}
})
]
});