2018-06-04 03:03:46 +02:00
|
|
|
const path = require('path');
|
2018-06-04 04:35:50 +02:00
|
|
|
const AssetsManifestPlugin = require('webpack-assets-manifest');
|
2019-02-10 04:43:11 +01:00
|
|
|
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
|
2019-06-10 02:29:10 +02:00
|
|
|
const TerserPlugin = require('terser-webpack-plugin');
|
2020-07-05 03:19:46 +02:00
|
|
|
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
|
2018-12-16 23:30:21 +01:00
|
|
|
|
2019-02-03 02:33:12 +01:00
|
|
|
const isProduction = process.env.NODE_ENV === 'production';
|
2018-06-04 03:03:46 +02:00
|
|
|
|
2018-03-31 06:58:38 +02:00
|
|
|
module.exports = {
|
2019-06-10 02:29:10 +02:00
|
|
|
cache: true,
|
2019-02-03 03:49:51 +01:00
|
|
|
target: 'web',
|
2018-06-04 05:34:30 +02:00
|
|
|
mode: process.env.NODE_ENV,
|
2020-07-05 03:19:46 +02:00
|
|
|
devtool: isProduction ? false : (process.env.DEVTOOL || 'eval-source-map'),
|
2018-06-04 02:40:35 +02:00
|
|
|
performance: {
|
|
|
|
hints: false,
|
|
|
|
},
|
2020-07-05 03:19:46 +02:00
|
|
|
entry: ['react-hot-loader/patch', './resources/scripts/index.tsx'],
|
2018-03-31 06:58:38 +02:00
|
|
|
output: {
|
2020-07-05 05:54:33 +02:00
|
|
|
path: path.join(__dirname, '/public/assets'),
|
2019-02-03 03:25:33 +01:00
|
|
|
filename: isProduction ? 'bundle.[chunkhash:8].js' : 'bundle.[hash:8].js',
|
|
|
|
chunkFilename: isProduction ? '[name].[chunkhash:8].js' : '[name].[hash:8].js',
|
2019-12-22 23:33:08 +01:00
|
|
|
publicPath: (process.env.PUBLIC_PATH || '') + '/assets/',
|
2018-06-04 03:46:27 +02:00
|
|
|
crossOriginLoading: 'anonymous',
|
2018-03-31 06:58:38 +02:00
|
|
|
},
|
|
|
|
module: {
|
|
|
|
rules: [
|
2019-02-03 03:25:33 +01:00
|
|
|
{
|
2020-07-05 05:54:33 +02:00
|
|
|
test: /\.tsx?$/,
|
2018-12-16 23:30:21 +01:00
|
|
|
exclude: /node_modules/,
|
2020-07-03 22:55:33 +02:00
|
|
|
loader: 'babel-loader',
|
2018-03-31 06:58:38 +02:00
|
|
|
},
|
2018-05-28 23:16:03 +02:00
|
|
|
{
|
2018-06-04 03:46:27 +02:00
|
|
|
test: /\.css$/,
|
2020-07-05 03:19:46 +02:00
|
|
|
use: [ 'style-loader', 'css-loader' ],
|
2018-12-16 23:30:21 +01:00
|
|
|
},
|
|
|
|
{
|
2020-07-05 05:54:33 +02:00
|
|
|
test: /\.(png|jp(e?)g|gif)$/,
|
2018-12-16 23:30:21 +01:00
|
|
|
loader: 'file-loader',
|
|
|
|
options: {
|
2020-07-05 05:54:33 +02:00
|
|
|
name: 'images/[name].[hash:8].[ext]',
|
2018-12-16 23:30:21 +01:00
|
|
|
},
|
|
|
|
},
|
2020-07-03 22:55:33 +02:00
|
|
|
{
|
2020-07-05 03:19:46 +02:00
|
|
|
test: /\.svg$/,
|
|
|
|
loader: 'svg-url-loader',
|
2020-07-05 05:54:33 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.js$/,
|
|
|
|
enforce: 'pre',
|
|
|
|
loader: 'source-map-loader',
|
2020-07-03 22:55:33 +02:00
|
|
|
}
|
2018-12-16 23:30:21 +01:00
|
|
|
],
|
2018-03-31 06:58:38 +02:00
|
|
|
},
|
2020-07-05 05:54:33 +02:00
|
|
|
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/],
|
|
|
|
},
|
2018-03-31 06:58:38 +02:00
|
|
|
resolve: {
|
2019-06-10 02:29:10 +02:00
|
|
|
extensions: ['.ts', '.tsx', '.js', '.json'],
|
2018-03-31 06:58:38 +02:00
|
|
|
alias: {
|
2020-07-05 05:54:33 +02:00
|
|
|
'@': path.join(__dirname, '/resources/scripts'),
|
2020-11-03 05:52:41 +01:00
|
|
|
'@feature': path.join(__dirname, '/resources/scripts/components/server/features'),
|
2018-03-31 06:58:38 +02:00
|
|
|
},
|
2018-06-04 05:34:30 +02:00
|
|
|
symlinks: false,
|
2018-03-31 06:58:38 +02:00
|
|
|
},
|
2020-07-05 06:57:35 +02:00
|
|
|
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',
|
|
|
|
},
|
2020-07-05 03:19:46 +02:00
|
|
|
plugins: [
|
|
|
|
new AssetsManifestPlugin({ writeToDisk: true, publicPath: true, integrity: true, integrityHashes: ['sha384'] }),
|
2020-07-12 19:43:37 +02:00
|
|
|
new ForkTsCheckerWebpackPlugin(isProduction ? {} : {
|
2020-07-05 03:19:46 +02:00
|
|
|
eslint: {
|
2020-07-05 05:54:33 +02:00
|
|
|
files: `${path.join(__dirname, '/resources/scripts')}/**/*.{ts,tsx}`,
|
2020-07-05 03:19:46 +02:00
|
|
|
},
|
2020-07-12 19:43:37 +02:00
|
|
|
}),
|
2020-07-05 06:46:49 +02:00
|
|
|
process.env.ANALYZE_BUNDLE ? new BundleAnalyzerPlugin({
|
|
|
|
analyzerHost: '0.0.0.0',
|
|
|
|
analyzerPort: 8081,
|
|
|
|
}) : null
|
2020-07-05 03:19:46 +02:00
|
|
|
].filter(p => p),
|
2019-02-03 02:33:12 +01:00
|
|
|
optimization: {
|
2020-07-05 03:19:46 +02:00
|
|
|
usedExports: true,
|
|
|
|
sideEffects: false,
|
|
|
|
runtimeChunk: false,
|
|
|
|
removeEmptyChunks: true,
|
2019-07-17 06:43:11 +02:00
|
|
|
minimize: isProduction,
|
2019-06-10 02:29:10 +02:00
|
|
|
minimizer: [
|
|
|
|
new TerserPlugin({
|
2020-12-26 19:41:25 +01:00
|
|
|
cache: isProduction,
|
2019-02-03 02:33:12 +01:00
|
|
|
parallel: true,
|
2020-07-05 03:19:46 +02:00
|
|
|
extractComments: false,
|
2019-06-10 02:29:10 +02:00
|
|
|
terserOptions: {
|
|
|
|
mangle: true,
|
2019-02-03 02:33:12 +01:00
|
|
|
output: {
|
|
|
|
comments: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
},
|
2019-09-18 06:05:20 +02:00
|
|
|
watchOptions: {
|
2020-03-23 02:15:38 +01:00
|
|
|
poll: 1000,
|
2019-09-18 06:05:20 +02:00
|
|
|
ignored: /node_modules/,
|
|
|
|
},
|
2019-02-03 02:33:12 +01:00
|
|
|
devServer: {
|
2020-07-05 03:19:46 +02:00
|
|
|
compress: true,
|
2020-07-05 05:54:33 +02:00
|
|
|
contentBase: path.join(__dirname, '/public'),
|
2019-12-22 23:33:08 +01:00
|
|
|
publicPath: (process.env.PUBLIC_PATH || '') + '/assets/',
|
2019-02-03 02:33:12 +01:00
|
|
|
allowedHosts: [
|
|
|
|
'.pterodactyl.test',
|
|
|
|
],
|
|
|
|
headers: {
|
|
|
|
'Access-Control-Allow-Origin': '*',
|
2018-12-16 23:30:21 +01:00
|
|
|
},
|
|
|
|
},
|
2018-03-31 06:58:38 +02:00
|
|
|
};
|