1234567891011121314151617181920212223242526272829303132 |
- const path = require('path');
- const merge = require('webpack-merge');
- const CopyWebpackPlugin = require('copy-webpack-plugin');
- const HtmlWebpackPlugin = require('html-webpack-plugin');
- const baseConfig = require('@polkadot/apps/webpack.base.config');
- const ENV = process.env.NODE_ENV || 'production';
- const isProd = ENV === 'production';
- const context = __dirname;
- module.exports = merge(
- baseConfig(ENV, context),
- {
- devtool: isProd ? 'none' : 'source-map',
- plugins: [
-
- new CopyWebpackPlugin({ patterns: [{ from: '../apps/public' }] }),
- new HtmlWebpackPlugin({
- PAGE_TITLE: 'Polkadot/Substrate Portal',
- inject: true,
- template: path.join(context, '../apps/public/index.html')
- })
- ],
- target: 'web'
- }
- );
|