mirror of
https://github.com/pterodactyl/panel.git
synced 2025-12-11 11:04:57 -06:00
144 lines
4.9 KiB
JavaScript
144 lines
4.9 KiB
JavaScript
const path = require('node:path');
|
|
const webpack = require('webpack');
|
|
const { WebpackAssetsManifest } = require('webpack-assets-manifest');
|
|
const TerserPlugin = require('terser-webpack-plugin');
|
|
|
|
const isProduction = process.env.NODE_ENV === 'production';
|
|
|
|
module.exports = {
|
|
cache: true,
|
|
target: 'web',
|
|
mode: isProduction ? 'production' : 'development',
|
|
devtool: process.env.DEVTOOL || (isProduction ? false : 'eval-source-map'),
|
|
performance: {
|
|
hints: false,
|
|
},
|
|
entry: ['react-hot-loader/patch', './resources/scripts/index.tsx'],
|
|
output: {
|
|
path: path.join(__dirname, '/public/assets'),
|
|
filename: isProduction ? 'bundle.[chunkhash:8].js' : 'bundle.[fullhash:8].js',
|
|
chunkFilename: isProduction ? '[name].[chunkhash:8].js' : '[name].[fullhash:8].js',
|
|
publicPath: (process.env.WEBPACK_PUBLIC_PATH || '/assets/'),
|
|
crossOriginLoading: 'anonymous',
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.tsx?$/,
|
|
exclude: /node_modules|\.spec\.tsx?$/,
|
|
loader: 'babel-loader',
|
|
},
|
|
{
|
|
test: /\.mjs$/,
|
|
include: /node_modules/,
|
|
type: 'javascript/auto',
|
|
},
|
|
{
|
|
test: /\.css$/,
|
|
use: [
|
|
{ loader: 'style-loader' },
|
|
{
|
|
loader: 'css-loader',
|
|
options: {
|
|
modules: {
|
|
auto: true,
|
|
// https://github.com/webpack/css-loader/blob/main/CHANGELOG.md#700-2024-04-04
|
|
namedExport: false,
|
|
exportLocalsConvention: 'as-is',
|
|
localIdentName: isProduction ? '[name]_[hash:base64:8]' : '[path][name]__[local]',
|
|
localIdentContext: path.join(__dirname, 'resources/scripts/components'),
|
|
},
|
|
sourceMap: !isProduction,
|
|
importLoaders: 1,
|
|
},
|
|
},
|
|
{
|
|
loader: 'postcss-loader',
|
|
options: { sourceMap: !isProduction },
|
|
},
|
|
],
|
|
},
|
|
{
|
|
test: /\.(png|jp(e?)g|gif)$/,
|
|
loader: 'file-loader',
|
|
options: {
|
|
name: 'images/[name].[hash:8].[ext]',
|
|
},
|
|
},
|
|
{
|
|
test: /\.svg$/,
|
|
loader: 'svg-url-loader',
|
|
},
|
|
{
|
|
test: /\.js$/,
|
|
enforce: 'pre',
|
|
loader: 'source-map-loader',
|
|
}
|
|
],
|
|
},
|
|
stats: {
|
|
// Ignore warnings emitted by "source-map-loader" when trying to parse source maps from
|
|
// JS plugins we use, namely brace editor.
|
|
warningsFilter: [/Failed to parse source map/],
|
|
},
|
|
resolve: {
|
|
extensions: ['.ts', '.tsx', '.js', '.json'],
|
|
alias: {
|
|
'@': path.join(__dirname, '/resources/scripts'),
|
|
'@definitions': path.join(__dirname, '/resources/scripts/api/definitions'),
|
|
'@feature': path.join(__dirname, '/resources/scripts/components/server/features'),
|
|
},
|
|
symlinks: false,
|
|
},
|
|
externals: {
|
|
// Mark moment as an external to exclude it from the Chart.js build since we don't need to use
|
|
// it for anything.
|
|
moment: 'moment',
|
|
},
|
|
plugins: [
|
|
new webpack.EnvironmentPlugin({
|
|
NODE_ENV: process.env.NODE_ENV || 'development',
|
|
DEBUG: process.env.NODE_ENV !== 'production',
|
|
WEBPACK_BUILD_HASH: Date.now().toString(16),
|
|
}),
|
|
new WebpackAssetsManifest({ output: 'manifest.json', writeToDisk: true, publicPath: true, integrity: true, integrityHashes: ['sha384'] }),
|
|
],
|
|
optimization: {
|
|
usedExports: true,
|
|
sideEffects: false,
|
|
runtimeChunk: false,
|
|
removeEmptyChunks: true,
|
|
minimize: isProduction,
|
|
minimizer: [
|
|
new TerserPlugin({
|
|
parallel: true,
|
|
extractComments: false,
|
|
terserOptions: {
|
|
mangle: true,
|
|
output: {
|
|
comments: false,
|
|
},
|
|
},
|
|
}),
|
|
],
|
|
},
|
|
watchOptions: {
|
|
poll: 1000,
|
|
ignored: /node_modules/,
|
|
},
|
|
devServer: {
|
|
compress: true,
|
|
port: 5173,
|
|
static: {
|
|
directory: path.join(__dirname, '/public'),
|
|
publicPath: process.env.WEBPACK_PUBLIC_PATH || '/assets/',
|
|
},
|
|
allowedHosts: [
|
|
'.pterodactyl.test',
|
|
],
|
|
headers: {
|
|
'Access-Control-Allow-Origin': '*',
|
|
},
|
|
},
|
|
};
|