mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00

- Widget now has a children array - Widgets can be activated and deactivated (this recurses over child widgets) - Renderers are now turned on and off in activate/deactivate methods - It is now possible to set a tool-local path (this path is appended to the tool's base path) - TabContainer can now automatically set a path based on paths given in its tab configuration - It's now possible to directly link to subviews of the viewer and the hunt optimizer
62 lines
1.7 KiB
JavaScript
62 lines
1.7 KiB
JavaScript
const common = require("./webpack.common.js");
|
|
const path = require("path");
|
|
const merge = require("webpack-merge");
|
|
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",
|
|
},
|
|
optimization: {
|
|
moduleIds: "hashed",
|
|
runtimeChunk: "single",
|
|
splitChunks: {
|
|
chunks: "all",
|
|
cacheGroups: {
|
|
styles: {
|
|
name: "style",
|
|
test: /\.css$/,
|
|
enforce: true,
|
|
},
|
|
vendor: {
|
|
test: /node_modules/,
|
|
name: "vendors",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.ts$/,
|
|
loader: "ts-loader",
|
|
include: path.resolve(__dirname, "src"),
|
|
},
|
|
{
|
|
test: /\.css$/,
|
|
use: [MiniCssExtractPlugin.loader, "css-loader"],
|
|
},
|
|
],
|
|
},
|
|
plugins: [
|
|
new CleanWebpackPlugin(),
|
|
new Dotenv({
|
|
path: "./.env.prod",
|
|
}),
|
|
new MiniCssExtractPlugin({
|
|
ignoreOrder: true,
|
|
filename: "[name].[contenthash].css",
|
|
}),
|
|
new CopyWebpackPlugin([
|
|
{
|
|
from: path.resolve(__dirname, "assets"),
|
|
to: path.resolve(__dirname, "dist/assets"),
|
|
},
|
|
]),
|
|
],
|
|
});
|