-
Notifications
You must be signed in to change notification settings - Fork 2
/
webpack.config.base.js
77 lines (76 loc) · 1.52 KB
/
webpack.config.base.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
const HtmlWebpackPlugin = require('html-webpack-plugin');
const ChunkProgressWebpackPlugin = require('chunk-progress-webpack-plugin');
const CopyPlugin = require('copy-webpack-plugin');
const pkg = require('./package');
module.exports = (env, argv) => ({
module: {
rules: [
{
test: /\.(j|t)s?$/,
use: 'ts-loader',
exclude: /node_modules/,
},
{
test: /\.css$/, // stylesheets
use: [
'style-loader',
'css-loader',
{
loader: 'postcss-loader',
options: {
postcssOptions: {
plugins: [
require('autoprefixer')(),
require('postcss-clean')(),
],
},
},
},
],
},
{
test: /(?<!\.fnt)\.(png|jpg|gif|webp|wav|ogg|mp3|glsl|xml|strand|txt|gltf)$/,
use: {
loader: 'file-loader',
options: {
outputPath: 'assets/',
name: argv.mode === 'development' ? undefined : '[name].[ext]',
},
},
},
{
test: /(otf|ttf|woff)$/,
type: 'asset/inline',
},
],
},
resolve: {
extensions: ['.ts', '.js'],
fallback: {
path: false,
},
},
output: {
filename: '[name].[contenthash].bundle.js',
clean: true,
},
plugins: [
new ChunkProgressWebpackPlugin(),
new CopyPlugin({
patterns: [
{
from: 'assets/**/*.{png,jpg,gif,webp,mp3,ogg,txt,fnt,gltf}',
context: 'src',
},
],
}),
new HtmlWebpackPlugin({
// creates index.html
title: pkg.description,
template: './src/index.html',
minify: true,
hash: true,
favicon: './src/assets/icon.png',
}),
],
});