-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
63 lines (59 loc) · 1.54 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
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,
type: "asset/resource"
},
// Extract compiled SCSS separately from JS
{
test: /\.s[ac]ss$/i,
use: [
{
loader: MiniCssExtractPlugin.loader
},
'css-loader',
{
loader: 'sass-loader',
options: {
sassOptions: {
quietDeps: true
},
},
},
]
}
]
},
resolve: {
modules: ['node_modules'],
extensions: ['.js', '.scss']
}
}