-
Notifications
You must be signed in to change notification settings - Fork 256
Expand file tree
/
Copy pathwebpack.common.js
More file actions
78 lines (77 loc) · 2.56 KB
/
webpack.common.js
File metadata and controls
78 lines (77 loc) · 2.56 KB
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
const path = require("path");
const webpack = require("webpack");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
module.exports = {
entry: {
application_webpack: "./app/javascript/application_webpack.js",
dark_theme: "./app/javascript/dark_theme.js",
light_theme: "./app/javascript/light_theme.js",
"pdf.worker": "pdfjs-dist/build/pdf.worker.mjs",
application: "./app/assets/stylesheets/entrypoints/application.scss",
notebook_common: "./app/assets/stylesheets/entrypoints/notebook_common.scss",
notebook_dark: "./app/assets/stylesheets/entrypoints/notebook_dark.scss",
notebook_light: "./app/assets/stylesheets/entrypoints/notebook_light.scss",
rmd: "./app/assets/stylesheets/entrypoints/rmd.scss",
rmd_dark: "./app/assets/stylesheets/entrypoints/rmd_dark.scss",
},
module: {
rules: [
{
test: /\.(js|jsx)$/i,
exclude: /node_modules/,
use: ["babel-loader"],
},
{
test: /\.(sass|scss|css)$/i,
use: [
MiniCssExtractPlugin.loader,
// url: false — asset URLs in CSS (fonts, images) are resolved by Rails/Sprockets at
// serve time, not by webpack. Without this, css-loader tries to bundle them and fails.
{loader: "css-loader", options: {url: false}},
{
loader: "sass-loader",
options: {
sassOptions: {
// Mirror the --load-path flags previously used by the standalone sass watcher,
// so @use paths in SCSS entrypoints resolve the same way.
loadPaths: [
path.resolve(__dirname, "node_modules"),
path.resolve(__dirname, "app/assets/stylesheets"),
path.resolve(__dirname, "vendor/assets/stylesheets"),
],
},
},
},
],
},
{
test: /\.(png|jpe?g|gif|eot|woff2|woff|ttf|svg|ico)$/i,
type: "asset/resource",
},
],
},
output: {
path: path.resolve(__dirname, "app/assets/builds"),
},
plugins: [
new webpack.optimize.LimitChunkCountPlugin({
maxChunks: 1,
}),
new MiniCssExtractPlugin(),
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery",
"window.jQuery": "jquery",
}),
],
resolve: {
extensions: [".js", ".json", ".jsx"],
fallback: {util: false},
modules: [
path.resolve(__dirname, "app/assets"),
path.resolve(__dirname, "vendor/assets"),
path.resolve(__dirname, "public/javascripts"),
"node_modules",
],
},
};