forked from skyportal/skyportal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
116 lines (112 loc) · 3.02 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
const path = require("path");
// 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].[chunkHash].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()
],
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"],
},
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;