mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-11-27 05:39:55 +08:00
113 lines
2.8 KiB
TypeScript
113 lines
2.8 KiB
TypeScript
import * as path from 'path'
|
|
import * as webpack from 'webpack'
|
|
import MiniCssExtractPlugin from 'mini-css-extract-plugin'
|
|
import TerserJSPlugin from 'terser-webpack-plugin'
|
|
import ManifestPlugin from 'webpack-manifest-plugin'
|
|
|
|
const devMode = !process.argv.includes('-p')
|
|
|
|
const config: webpack.Configuration = {
|
|
mode: devMode ? 'development' : 'production',
|
|
entry: {
|
|
app: ['react-hot-loader/patch', '@/index.tsx'],
|
|
style: ['@/styles/common.css'],
|
|
home: '@/scripts/homePage.ts',
|
|
spectre: [
|
|
'spectre.css/dist/spectre.min.css',
|
|
'@/fonts/minecraft.css',
|
|
'@/styles/spectre.css',
|
|
],
|
|
},
|
|
output: {
|
|
path: `${__dirname}/public/app`,
|
|
filename: 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',
|
|
},
|
|
) as Record<string, string>,
|
|
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())
|
|
}
|
|
|
|
export default config
|