2019-07-27 07:49:19 +08:00
|
|
|
const common = require("./webpack.common.js");
|
|
|
|
const path = require("path");
|
2020-07-19 06:35:10 +08:00
|
|
|
const { merge } = require("webpack-merge");
|
2019-07-27 07:49:19 +08:00
|
|
|
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
|
|
|
|
const Dotenv = require("dotenv-webpack");
|
|
|
|
const { CleanWebpackPlugin } = require("clean-webpack-plugin");
|
|
|
|
const CopyWebpackPlugin = require("copy-webpack-plugin");
|
|
|
|
|
|
|
|
module.exports = merge(common, {
|
|
|
|
mode: "production",
|
|
|
|
output: {
|
|
|
|
filename: "[name].[contenthash].js",
|
|
|
|
},
|
|
|
|
module: {
|
|
|
|
rules: [
|
|
|
|
{
|
2019-09-06 02:30:11 +08:00
|
|
|
test: /\.ts$/,
|
2019-12-25 07:17:02 +08:00
|
|
|
loader: "ts-loader",
|
2019-07-27 07:49:19 +08:00
|
|
|
include: path.resolve(__dirname, "src"),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.css$/,
|
2019-08-11 04:09:06 +08:00
|
|
|
use: [MiniCssExtractPlugin.loader, "css-loader"],
|
2019-07-27 07:49:19 +08:00
|
|
|
},
|
2019-08-11 04:09:06 +08:00
|
|
|
],
|
2019-07-27 07:49:19 +08:00
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
new CleanWebpackPlugin(),
|
|
|
|
new Dotenv({
|
|
|
|
path: "./.env.prod",
|
|
|
|
}),
|
|
|
|
new MiniCssExtractPlugin({
|
2019-12-25 07:17:02 +08:00
|
|
|
ignoreOrder: true,
|
2019-08-11 04:09:06 +08:00
|
|
|
filename: "[name].[contenthash].css",
|
2019-07-27 07:49:19 +08:00
|
|
|
}),
|
2020-07-19 06:36:35 +08:00
|
|
|
new CopyWebpackPlugin({
|
|
|
|
patterns: [
|
|
|
|
{
|
|
|
|
from: path.resolve(__dirname, "assets"),
|
|
|
|
to: path.resolve(__dirname, "dist/assets"),
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}),
|
2019-08-11 04:09:06 +08:00
|
|
|
],
|
2019-07-27 07:49:19 +08:00
|
|
|
});
|