blessing-skin-server/webpack.config.js
2020-05-30 11:18:13 +08:00

120 lines
2.9 KiB
JavaScript

const path = require('path')
const webpack = require('webpack')
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
const TerserJSPlugin = require('terser-webpack-plugin')
const ManifestPlugin = require('webpack-manifest-plugin')
const devMode = !process.argv.includes('-p')
/** @type {import('webpack').Configuration} */
const config = {
mode: devMode ? 'development' : 'production',
entry: {
app: ['react-hot-loader/patch', '@/index.tsx'],
sw: '@/scripts/sw.ts',
style: ['@/styles/common.css'],
home: '@/scripts/home-page.ts',
spectre: [
'spectre.css/dist/spectre.min.css',
'@/fonts/minecraft.css',
'@/styles/spectre.css',
],
},
output: {
path: `${__dirname}/public/app`,
filename: ({ chunk }) =>
chunk.name === 'sw'
? 'sw.js'
: devMode
? '[name].js'
: '[name].[contenthash:7].js',
chunkFilename: devMode ? '[id].js' : '[id].[contenthash:7].js',
},
module: {
rules: [
{
test: /\.tsx?$/,
loader: 'ts-loader',
options: {
configFile: 'tsconfig.build.json',
transpileOnly: true,
},
},
{
test: /\.css$/,
use: [
devMode ? 'style-loader' : MiniCssExtractPlugin.loader,
{
loader: 'css-loader',
options: {
importLoaders: 1,
},
},
'postcss-loader',
],
},
{
test: /\.(png|webp)$/,
loader: 'url-loader',
options: {
limit: 8192,
},
},
{
test: /\.(svg|woff2?|eot|ttf)$/,
loader: devMode ? 'url-loader' : 'file-loader',
},
],
},
plugins: [
new MiniCssExtractPlugin({
filename: devMode ? '[name].css' : '[name].[contenthash:7].css',
chunkFilename: devMode ? '[id].css' : '[id].[contenthash:7].css',
}),
],
resolve: {
extensions: ['.js', '.ts', '.tsx', '.json'],
alias: {
'react-dom': '@hot-loader/react-dom',
'@': path.resolve(__dirname, 'resources/assets/src'),
readline: '@/scripts/cli/readline.ts',
},
},
externals: Object.assign(
{ jquery: 'jQuery', bootstrap: 'bootstrap', 'admin-lte': 'adminlte' },
devMode
? {}
: {
react: 'React',
'react-dom': 'ReactDOM',
},
),
optimization: {
minimizer: [new TerserJSPlugin({})],
},
devtool: devMode ? 'cheap-module-eval-source-map' : false,
devServer: {
headers: {
'Access-Control-Allow-Origin': '*',
},
host: '0.0.0.0',
hot: true,
hotOnly: true,
stats: 'errors-only',
},
stats: 'errors-only',
node: {
child_process: 'empty',
fs: 'empty',
},
}
if (devMode) {
config.plugins.push(new webpack.NamedModulesPlugin())
config.plugins.push(new webpack.HotModuleReplacementPlugin())
} else {
config.plugins.push(new ManifestPlugin())
}
module.exports = config