forked from cerc-io/laconic-console
eb6bcd9c95
Use Moustache to create template and set config in page. Use babel plugins to process GQL (and fix GQL queries). Added service type.
22 lines
457 B
JavaScript
22 lines
457 B
JavaScript
//
|
|
// Copyright 2019 DxOS
|
|
//
|
|
|
|
const merge = require('webpack-merge');
|
|
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
|
|
|
|
const baseConfig = require('./webpack-common.config');
|
|
|
|
module.exports = merge(baseConfig, {
|
|
|
|
entry: './src/main',
|
|
|
|
plugins: [
|
|
// http://127.0.0.1:8888
|
|
// https://github.com/webpack-contrib/webpack-bundle-analyzer#options-for-plugin
|
|
new BundleAnalyzerPlugin({
|
|
openAnalyzer: false
|
|
})
|
|
]
|
|
});
|