-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
92 lines (87 loc) · 2.61 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
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: {
// Non-react bundle
// This is the main entry point for the non-react bundle
// It will include all the JS and SCSS files that are not part of the React app
main: [
"./front_end/js/application.js",
"./front_end/stylesheets/application.scss",
],
// React bundle
// This is the main entry point for the React bundle
// It will include all the JS and SCSS files that are part of the React app
react: ["./react_front_end/src/index.js"],
},
output: {
// Where Webpack will compile assets to
path: path.resolve("./front_end/webpack_bundles/"),
// Where the compiled assets will be accessed through Django
// (they are picked up by `collectstatic`)
publicPath: "/static/webpack_bundles/",
filename: "[name]-[contenthash].js",
},
plugins: [
new BundleTracker({ path: __dirname, filename: "webpack-stats.json" }),
new MiniCssExtractPlugin({
filename: "[name]-[contenthash].css",
chunkFilename: "[id]-[contenthash].css",
}),
],
module: {
rules: [
// Use Babel to transpile JS/JSX
{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
use: {
loader: "babel-loader",
options: {
presets: [
"@babel/preset-env",
["@babel/preset-react", { runtime: "automatic" }],
],
},
},
},
// 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|css)$/i,
use: [
{
loader: MiniCssExtractPlugin.loader,
},
"css-loader",
{
loader: "sass-loader",
},
],
},
],
},
resolve: {
modules: ["node_modules"],
extensions: [".js", ".jsx", ".scss"],
},
};