forked from Sirius207/course-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.prod.js
106 lines (102 loc) · 2.7 KB
/
webpack.config.prod.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
const path = require('path');
const webpack = require('webpack');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
const ScriptExtHtmlWebpackPlugin = require('script-ext-html-webpack-plugin');
const CssoWebpackPlugin = require('csso-webpack-plugin').default;
// Load setting
const CONFIG = require('./config.json');
// Build Dirname
const YEAR = CONFIG.year;
const buildPath = path.resolve(__dirname, `docs/${YEAR}`);
const extractPlugin = new ExtractTextPlugin({
filename: './assets/css/app.css',
});
module.exports = {
context: path.resolve(__dirname, 'src'),
entry: {
// with context setup, ./src/app.js -> ./app.js
app: './app.js',
vendors: './vendors.js',
polyfill: 'babel-polyfill',
},
output: {
path: buildPath,
filename: './assets/js/[name].bundle.js',
},
module: {
rules: [
// babel-loader
{
test: /\.js$/,
exclude: /(node_modules|bower_components)/,
use: {
loader: 'babel-loader',
options: {
presets: ['env'],
},
},
},
// html-loader
{ test: /\.html$/, use: ['html-loader'] },
// sass-loader
{
test: /\.scss$/,
include: [path.resolve(__dirname, 'src', 'assets', 'scss')],
use: extractPlugin.extract({
use: [
{
loader: 'css-loader',
options: {
sourceMap: true,
minimize: true,
},
},
{
loader: 'sass-loader',
options: {
sourceMap: true,
},
},
],
fallback: 'style-loader',
}),
},
// Media Files Loader
{
test: /\.(jpg|png|gif|svg)$/,
use: [
{
loader: 'file-loader',
options: {
name: '[name].[ext]',
outputPath: './assets/media/',
},
},
],
},
],
},
plugins: [
// clear old build folder before building
new CleanWebpackPlugin([`docs/${YEAR}`]),
// auto update index.html in dist folder
new HtmlWebpackPlugin({
template: 'index.html',
favicon: 'favicon.ico',
hash: true,
}),
new ScriptExtHtmlWebpackPlugin({
defaultAttribute: 'async',
}),
new webpack.optimize.OccurrenceOrderPlugin(),
new UglifyJsPlugin({
parallel: true,
cache: true,
}),
extractPlugin, // Extract CSS Files From JS Bundle
new CssoWebpackPlugin(), // Minify CSS
],
};