-
Notifications
You must be signed in to change notification settings - Fork 6
/
webpack.config.js
157 lines (147 loc) · 3.87 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
'use strict'
const path = require('path');
const webpack = require('webpack');
const VueLoaderPlugin = require('vue-loader/lib/plugin');
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const CssMinimizerPlugin = require('css-minimizer-webpack-plugin');
const TerserJSPlugin = require('terser-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const BundleTracker = require('webpack-bundle-tracker');
if (!('VUE_DEVTOOLS' in process.env) || process.env.VUE_DEVTOOLS.length === 0) {
process.env.VUE_DEVTOOLS = process.env.ENV === 'localdev';
}
module.exports = {
mode: (process.env.ENV === 'localdev' ? 'development' : 'production'),
context: __dirname,
optimization: {
minimizer: [
new CssMinimizerPlugin(),
new TerserJSPlugin(),
],
splitChunks: {
chunks: 'all',
},
},
// MARK: Specify the 'entry point' js for the vue application. Multiple entry points can be
// declared using an object
entry: {
home: [
"./myuw_vue/home.js",
],
academics: [
"./myuw_vue/academics.js",
],
teaching: [
"./myuw_vue/teaching.js",
],
accounts: [
"./myuw_vue/accounts.js"
],
future_quarters: [
"./myuw_vue/future_quarters.js"
],
profile: [
"./myuw_vue/profile.js"
],
textbooks: [
"./myuw_vue/textbooks.js"
],
husky_experience: [
"./myuw_vue/husky_experience.js"
],
notices: [
"./myuw_vue/notices.js"
],
teaching_classlist: [
"./myuw_vue/teaching_classlist.js"
],
resources: [
"./myuw_vue/resources.js"
],
calendar: [
"./myuw_vue/calendar.js"
],
},
// MARK: Put the 'bundles' in a name-spaced directory in the django app statics
// where it be collected when using 'collectstatic'
output: {
path: path.resolve('./myuw/static/myuw/bundles/'),
filename: "[name]-[contenthash].js",
chunkFilename: '[id]-[contenthash].js',
publicPath: '/static/myuw/bundles/',
},
module: {
rules: [
{
test: /\.vue$/,
use: 'vue-loader'
},
{
test: /\.js$/,
exclude: /(node_modules|bower_components)/,
loader: 'babel-loader'
},
{
test: /\.css$/,
use: [
MiniCssExtractPlugin.loader,
'css-loader'
],
},
{
test: /\.scss$/,
use: [
MiniCssExtractPlugin.loader,
'css-loader',
{
loader: 'sass-loader',
options: {
sassOptions: { quietDeps: true },
},
}
],
},
{
test: /\.less$/,
use: [
MiniCssExtractPlugin.loader,
'css-loader',
'less-loader'
]
},
{ test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/, use: "url-loader?limit=10000&mimetype=application/font-woff" },
{ test: /\.(png|ttf|eot|svg)(\?v=[0-9]\.[0-9]\.[0-9])?$/, use: "file-loader" },
]
},
plugins: [
new webpack.EnvironmentPlugin(['VUE_DEVTOOLS']),
new CleanWebpackPlugin(),
new VueLoaderPlugin(),
new MiniCssExtractPlugin({
filename: '[name]-[contenthash].css',
chunkFilename: '[id]-[contenthash].css',
}),
// MARK: Put the 'webpack-stats.json' file in the static location directory so that it
// can be accessed during development and production static collection
new BundleTracker({
path: path.resolve('./myuw/static/'),
filename: 'webpack-stats.json',
}),
],
resolve: {
alias: {
'vue$': 'vue/dist/vue.esm.js',
},
}
}
if (process.env.ENV == 'localdev') {
module.exports.devtool = 'source-map';
}
if (process.env.BUNDLE_ANALYZER === "True") {
module.exports.plugins.push(
new BundleAnalyzerPlugin({
analyzerHost: '0.0.0.0',
})
);
}