-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
54 lines (53 loc) · 1.27 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
const path = require('path'),
CopyPlugin = require('copy-webpack-plugin'),
{ WebpackManifestPlugin } = require('webpack-manifest-plugin'),
isProd = process.argv.includes('production');
module.exports = {
watch: !isProd,
mode: isProd ? 'production' : 'development',
entry: {
main: './src/static/main.js',
landing: './src/static/landing/landing.js',
},
output: {
filename: '[name].[contenthash].js',
path: path.resolve(__dirname, './static'),
},
resolve: {
alias: {
svelte: path.resolve('node_modules', 'svelte'),
},
extensions: ['.mjs', '.js', '.svelte'],
mainFields: ['svelte', 'browser', 'module', 'main'],
},
module: {
rules: [
{
test: /\.(html|svelte)$/,
use: 'svelte-loader',
},
{
test: /\.scss$/,
use: ['style-loader', 'css-loader', 'sass-loader'],
},
],
},
plugins: [
new CopyPlugin({
patterns: [
{
from: '**/*.svg',
context: './src/static',
},
{
from: '**/*.png',
context: './src/static',
},
//move fontawesome assets to where they can be served
{ from: 'fontawesome-free/**/*.{woff,ttf,css,txt,woff2}', context: './node_modules/@fortawesome/' },
{ from: 'client-dist/socket.io.min.js', context: './node_modules/socket.io/' },
],
}),
new WebpackManifestPlugin(),
],
};