2020-12-05 08:47:02 +01:00
|
|
|
const path = require('path');
|
|
|
|
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
|
2020-12-12 21:23:38 +01:00
|
|
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
2021-02-16 10:15:04 +01:00
|
|
|
const CompressionPlugin = require('compression-webpack-plugin');
|
2020-12-05 08:47:02 +01:00
|
|
|
|
2020-12-09 04:35:02 +01:00
|
|
|
|
2020-12-05 08:47:02 +01:00
|
|
|
module.exports = {
|
2020-12-07 01:31:48 +01:00
|
|
|
entry: {
|
|
|
|
app: path.join(__dirname, 'src', 'index.tsx')
|
|
|
|
},
|
|
|
|
target: 'web',
|
|
|
|
resolve: {
|
|
|
|
extensions: ['.ts', '.tsx', '.js', '.jsx']
|
|
|
|
},
|
|
|
|
module: {
|
2020-12-12 05:06:42 +01:00
|
|
|
rules: [{
|
2020-12-07 01:31:48 +01:00
|
|
|
test: /\.tsx?$/,
|
|
|
|
use: 'ts-loader',
|
|
|
|
exclude: '/node_modules/'
|
2020-12-12 05:06:42 +01:00
|
|
|
},
|
2020-12-07 01:31:48 +01:00
|
|
|
{
|
|
|
|
test: /\.(png|jpe?g|gif|svg)$/,
|
|
|
|
use: [{
|
|
|
|
loader: 'file-loader',
|
|
|
|
options: {
|
|
|
|
esModule: false,
|
|
|
|
}
|
2020-12-12 05:06:42 +01:00
|
|
|
}]
|
2021-02-16 08:43:26 +01:00
|
|
|
},
|
2020-12-07 01:31:48 +01:00
|
|
|
]
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
new CleanWebpackPlugin(),
|
2020-12-12 21:23:38 +01:00
|
|
|
new CopyWebpackPlugin({
|
|
|
|
patterns: [{
|
2020-12-12 22:12:29 +01:00
|
|
|
from: 'public/*',
|
2020-12-16 03:04:12 +01:00
|
|
|
to: '[name].[ext]',
|
|
|
|
globOptions: {
|
|
|
|
ignore: [
|
|
|
|
'**/index.html'
|
|
|
|
]
|
|
|
|
}
|
2020-12-12 21:23:38 +01:00
|
|
|
}]
|
2021-02-16 10:15:04 +01:00
|
|
|
}),
|
|
|
|
new CompressionPlugin()
|
2021-02-16 08:43:26 +01:00
|
|
|
]
|
2020-12-07 01:31:48 +01:00
|
|
|
}
|