-
Notifications
You must be signed in to change notification settings - Fork 4
/
webpack.config.js
84 lines (79 loc) · 2.37 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
const path = require("path");
const BundleTracker = require('webpack-bundle-tracker');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
module.exports = {
mode: process.env.ENV == "production" ? "production" : "development",
context: __dirname,
entry: {
main: [
'./common/static/common/js/application.js',
'./common/static/common/scss/application.scss'
]
},
output: {
// Where Webpack will compile assets to
path: path.resolve('./static/webpack_bundles/'),
// Where the compiled assets will be accessed through Django
// (they are picked up by `collectstatic`)
publicPath: '/assets/webpack_bundles/',
filename: "[name]-[hash].js"
},
plugins: [
new BundleTracker({ filename: './webpack-stats.json' }),
new MiniCssExtractPlugin({
filename: '[name]-[hash].css',
chunkFilename: '[id]-[hash].css'
})
],
module: {
rules: [
// Use file-loader to handle image assets
{
test: /\.(png|jpe?g|gif|woff2?|svg|ico)$/i,
use: [
{
loader: 'file-loader',
options: {
// Note: `django-webpack-loader`'s `webpack_static` tag does
// not yet pick up versioned assets, so we need to
// generate image assets without a hash in the
// filename.
// c.f.: https://github.com/owais/django-webpack-loader/issues/138
name: '[name].[ext]',
}
}
]
},
// Extract compiled SCSS separately from JS
{
test: /\.s[ac]ss$/i,
use: [
{
loader: MiniCssExtractPlugin.loader
},
'css-loader',
{
loader: 'sass-loader',
options: {
sassOptions: {
includePaths: [
'additional_codes/static/additional_codes/scss',
'footnotes/static/footnotes/scss',
'geo_areas/static/geo_areas/scss',
'measures/static/measures/scss',
'publishing/static/publishing/scss',
'regulations/static/regulations/scss',
'workbaskets/static/workbaskets/scss',
],
},
},
},
]
}
]
},
resolve: {
modules: ['node_modules'],
extensions: ['.js', '.scss']
}
}