-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.common.js
93 lines (92 loc) · 2.36 KB
/
webpack.common.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
const path = require('path');
const webpack = require('webpack');
const CleanPlugin = require('clean-webpack-plugin');
const HTMLPlugin = require('html-webpack-plugin');
const PWAManifestPlugin = require('webpack-pwa-manifest');
const OfflinePlugin = require('offline-plugin');
const GoogleFontsPlugin = require('google-fonts-webpack-plugin');
module.exports = {
entry: {
app: './src/index.tsx'
},
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, "dist")
},
devtool: 'source-map',
resolve: {
extensions: ['.ts', '.tsx', '.js', '.json']
},
plugins: [
new CleanPlugin(['dist']),
new HTMLPlugin({
title: 'Lifelike',
template: './src/index.template.ejs',
favicon: path.resolve(__dirname, 'src/assets/icons/favicon.png')
}),
new PWAManifestPlugin({
name: 'Lifelike',
description: 'A Life-like Cellular Automaton',
background_color: '#1d1d2f',
theme_color: '#1d1d2f',
display: 'fullscreen',
icons: [
{
src: path.resolve(__dirname, 'src/assets/icons/icon.png'),
sizes: [96, 128, 192, 256, 384, 512, 1024]
}
]
}),
new GoogleFontsPlugin({
fonts: [
{ family: "Lora", variants: ['400', '700'] },
{ family: "Muli", variants: ['400', '700'] }
]
}),
new webpack.WatchIgnorePlugin([
/css\.d\.ts$/
]),
new OfflinePlugin()
],
module: {
rules: [{
test: /\.tsx?$/,
use: [
{loader: 'babel-loader'},
{loader: 'ts-loader'}
]
},
{
enforce: 'pre',
test: /\.js?$/,
loader: 'source-map-loader'
},
{
test: /\.css$/,
use:[
{loader: 'style-loader'},
{loader: 'typings-for-css-modules-loader?modules&namedExport&camelCase&localIdentName=[name]__[local]--[hash:base64:5]'},
{
loader: 'postcss-loader',
options: {
ident: 'postcss',
plugins: (loader) => [
require('postcss-cssnext')(),
require('postcss-input-range')(),
require('autoprefixer')(),
require('cssnano')()
]
}
}
]
},
{
test: /\.(jpg|png|svg)$/,
loader: 'url-loader',
options:{
limit: 10000
}
}
]
}
}