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.
50 lines
1.5 KiB
50 lines
1.5 KiB
const merge = require("webpack-merge"); |
|
const path = require("path"); |
|
const MiniCssExtractPlugin = require("mini-css-extract-plugin"); |
|
const HtmlWebpackPlugin = require("html-webpack-plugin"); |
|
const ForkTsCheckerWebpackPlugin = require("fork-ts-checker-webpack-plugin"); |
|
const OptimizeCssAssetsPlugin = require("optimize-css-assets-webpack-plugin"); |
|
|
|
const dirs = require("./dirs"); |
|
|
|
const common = require("./webpack.common.js"); |
|
|
|
module.exports = merge(common, { |
|
devtool: "eval-source-map", |
|
output: { |
|
path: dirs.DEST, |
|
filename: "[name].[contenthash].js", |
|
}, |
|
devServer: { |
|
contentBase: path.join(__dirname, ".."), |
|
port: 9001, |
|
liveReload: true, |
|
}, |
|
plugins: [ |
|
new MiniCssExtractPlugin({ |
|
path: dirs.DEST, |
|
filename: "fineui.[contenthash].css", |
|
}), |
|
new HtmlWebpackPlugin({ |
|
template: path.resolve(__dirname, "../index.html"), |
|
chunks: ["polyfill", "fineui"], |
|
chunksSortMode: "manual", |
|
}), |
|
new ForkTsCheckerWebpackPlugin({ |
|
watch: ["./typescript"], |
|
}), |
|
new OptimizeCssAssetsPlugin({ |
|
assetNameRegExp: /\.css$/g, |
|
cssProcessor: require("cssnano"), |
|
cssProcessorPluginOptions: { |
|
preset: ["default", { |
|
discardComments: { |
|
removeAll: true, |
|
}, |
|
normalizeUnicode: false, |
|
}], |
|
}, |
|
canPrint: true, |
|
}), |
|
], |
|
});
|
|
|