快速搭建fineui开发环境。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

51 lines
1.5 KiB

const merge = require('webpack-merge');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const OptimizeCssAssetsPlugin = require('optimize-css-assets-webpack-plugin');
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
const dirs = require('./dirs');
const common = require('./webpack.common.js');
module.exports = merge(common, {
devtool: 'eval-source-map',
entry: {},
output: {
path: dirs.DEST,
filename: '[name].[contenthash].js',
},
devServer: {
open: true,
contentBase: dirs.CONTENT_BASE,
port: 8080,
liveReload: true,
},
plugins: [
new ForkTsCheckerWebpackPlugin({}),
new MiniCssExtractPlugin({
path: dirs.DEST,
filename: '[contenthash].css',
}),
new HtmlWebpackPlugin({
template: dirs.INDEX,
chunks: ['bundle'],
chunksSortMode: 'manual',
nodeModules: dirs.NODE_MODULES,
}),
new OptimizeCssAssetsPlugin({
assetNameRegExp: /\.css$/g,
cssProcessor: require('cssnano'),
cssProcessorPluginOptions: {
preset: [
'default',
{
discardComments: {
removeAll: true,
},
normalizeUnicode: false,
},
],
},
canPrint: true,
}),
],
});