-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
214 lines (204 loc) · 5.58 KB
/
webpack.config.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
const HtmlWebpackPlugin = require('html-webpack-plugin');
const FaviconsWebpackPlugin = require('favicons-webpack-plugin');
const HtmlWebpackInlineSVGPlugin = require('html-webpack-inline-svg-plugin');
const { GenerateSW } = require('workbox-webpack-plugin');
const RobotstxtPlugin = require('robotstxt-webpack-plugin');
const path = require('path');
const config = {
context: `${__dirname}/src`, // `__dirname` is root of project and `src` is source
entry: './index.js',
output: {
path: `${__dirname}/dist`, // `dist` is the destination
publicPath: '/',
filename: '[name].[hash].js',
chunkFilename: '[name].[hash].chunk.js',
},
// To run development server
devServer: {
contentBase: `${__dirname}/dist`,
publicPath: '/',
compress: true,
port: 9000,
hot: true,
index: 'index.html',
historyApiFallback: true,
},
mode: 'development',
module: {
rules: [
{
test: /\.js$/, // Check for all js files
use: [
{
loader: 'babel-loader',
options: {
presets: [
['@babel/preset-env', { useBuiltIns: 'usage', corejs: 3, targets: 'last 2 years' }],
],
plugins: [
'@babel/plugin-proposal-object-rest-spread',
'@babel/plugin-syntax-dynamic-import',
],
},
},
],
include: [path.resolve(__dirname, './src')],
},
{
test: /src\/content\/amiv\/markdown\/[a-zA-Z\d-]{3,}\.[a-z]{2}\.md$/, // Check for all .md files in /amiv/markdown
use: [
{
loader: 'file-loader', // Writes the generated HTML to a file
options: {
name: '[name].[hash].html',
outputPath: 'assets/amiv/',
publicPath: 'assets/amiv/',
},
},
{
loader: 'markdown-loader', // Converts Markdown to HTML
},
],
},
{
test: /src\/content\/amiv\/html\/[a-zA-Z\d-]{3,}\.html$/, // Check for all .html files in /amiv/html
use: [
{
loader: 'file-loader', // Writes the generated HTML to a file
options: {
name: '[name].[hash].html',
outputPath: 'assets/amiv/',
publicPath: 'assets/amiv/',
},
},
],
},
{
test: /src\/content\/amiv\/images\/[a-zA-Z\d\/]+\.(png|jp(e*)g|svg)$/,
use: [
{
loader: 'url-loader',
options: {
limit: 8000, // Convert images < 8kb to base64 strings
name: '[name].[hash].[ext]',
outputPath: 'assets/amiv/',
publicPath: 'assets/amiv/',
},
},
],
},
{
test: /src\/images\/[a-zA-Z\d\/\-_]+\.(png|jp(e*)g|svg)$/,
use: [
{
loader: 'url-loader',
options: {
limit: 8000, // Convert images < 8kb to base64 strings
name: '[name].[hash].[ext]',
outputPath: 'assets/images',
publicPath: 'assets/images/',
},
},
],
},
{
test: /\.less$/,
use: [
{
loader: 'style-loader', // creates style nodes from JS strings
},
{
loader: 'css-loader', // translates CSS into CommonJS
},
{
loader: 'less-loader', // compiles Less to CSS
},
],
},
{
test: /\.css$/,
use: ['style-loader', 'css-loader'],
},
{
test: /\.html$/,
use: [
{
loader: 'html-loader',
options: {
minimize: true,
},
},
],
},
],
},
// Dynamically include config
resolve: {
alias: {
config: `${__dirname}/config.js`,
'polythene-theme': `${__dirname}/theme.js`, // when config is in the project root
},
},
devtool: 'eval-source-map', // Default development sourcemap
optimization: {
usedExports: true,
sideEffects: false,
splitChunks: {
chunks: 'all',
automaticNameDelimiter: '-',
name: true,
},
},
plugins: [
new RobotstxtPlugin({
policy: [{ userAgent: '*', allow: '/' }],
}),
new FaviconsWebpackPlugin({
logo: './images/amivWheel.svg',
prefix: 'assets/icons-[hash]/',
title: 'AMIV an der ETH',
favicons: {
appName: 'AMIV an der ETH',
appShortName: 'AMIV',
appDescription: 'Official Website of «AMIV an der ETH»',
developerName: 'AMIV an der ETH',
developerURL: null, // prevent retrieving from the nearest package.json
background: '#fff',
theme_color: '#e8462b',
lang: 'en',
icons: {
coast: false,
yandex: false,
},
},
}),
new GenerateSW({
navigateFallback: '/',
navigateFallbackBlacklist: [/^\/media/],
runtimeCaching: [
{
urlPattern: /\.(?:png|jpg|jpeg|svg)$/,
handler: 'CacheFirst',
options: {
cacheName: 'images',
expiration: { maxEntries: 10 }, // Only cache 10 images.
},
},
{
urlPattern: /\.js$/,
handler: 'CacheFirst',
options: {
cacheName: 'scripts',
},
},
],
}),
new HtmlWebpackPlugin({
title: 'AMIV an der ETH',
filename: 'index.html',
template: 'index.html',
}),
new HtmlWebpackInlineSVGPlugin(),
],
};
module.exports = config;