forked from skyportal/skyportal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
130 lines (125 loc) · 3.56 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
const path = require("path");
const webpack = require("webpack");
// const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
const config = {
entry: {
main: [
"@babel/polyfill",
path.resolve(__dirname, "static/js/components/Main.jsx"),
],
},
output: {
path: path.resolve(__dirname, "static/build"),
publicPath: "/static/build/",
filename: "[name].bundle.js",
chunkFilename: "[name].[contenthash].bundle.js",
},
module: {
rules: [
{
test: /\.(js|jsx)?$/,
loader: "babel-loader",
include: /static\/js/,
exclude: /node_modules/,
options: {
presets: ["@babel/preset-env", "@babel/preset-react"],
plugins: [
"@babel/plugin-transform-async-to-generator",
"@babel/plugin-transform-arrow-functions",
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-object-rest-spread",
],
compact: false,
},
},
// For Bokeh's "export * from y" syntax
{
test: /\.js?$/,
include: /node_modules\/@bokeh/,
use: [
{
loader: "babel-loader",
options: {
plugins: [
"@babel/plugin-proposal-export-namespace-from",
"@babel/plugin-proposal-optional-chaining",
"@babel/plugin-proposal-nullish-coalescing-operator",
],
},
},
],
},
// Enable CSS Modules for Skyportal
{
test: /\.css$/,
include: [/static\/js/, /node_modules\/react-datepicker\/dist/],
use: [
{
loader: "style-loader",
},
{
loader: "css-loader",
options: {
modules: {
localIdentName: "[path][name]__[local]--[hash:base64:5]",
},
},
},
],
},
// react-grid-layout for Home page
{
test: /\.css$/,
include: /node_modules\/react-grid-layout\/css/,
use: ["style-loader", "css-loader"],
},
{
test: /\.css$/,
include: /node_modules\/react-resizable\/css/,
use: ["style-loader", "css-loader"],
},
],
},
plugins: [
// Uncomment the following line to enable bundle size analysis
// new BundleAnalyzerPlugin()
// Needed for non-polyfilled node modules; we aim to remove this when possible
new webpack.ProvidePlugin({
process: path.resolve(__dirname, "node_modules/process/browser.js"),
}),
new webpack.ProvidePlugin({
Buffer: ["buffer", "Buffer"],
}),
],
resolve: {
alias: {
baselayer: path.resolve(__dirname, "baselayer/static/js"),
reactgridlayoutcss: path.resolve(
__dirname,
"node_modules/react-grid-layout/css"
),
reactresizablecss: path.resolve(
__dirname,
"node_modules/react-resizable/css"
),
bokehjs: path.resolve(
__dirname,
"node_modules/@bokeh/bokehjs/build/js/lib"
),
},
extensions: [".js", ".jsx", ".json"],
// Needed for non-polyfilled node modules; we aim to remove this when possible
fallback: {
path: path.resolve(__dirname, "node_modules/path-browserify"),
buffer: path.resolve(__dirname, "node_modules/buffer"),
},
},
watchOptions: {
ignored: /node_modules/,
// Set to true if you have trouble with JS change monitoring
poll: false,
},
mode: "development",
devtool: "eval-source-map",
};
module.exports = config;