forked from concord-consortium/seismic-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
97 lines (95 loc) · 2.43 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
var path = require('path')
var webpack = require('webpack')
var CopyWebpackPlugin = require('copy-webpack-plugin')
module.exports = {
mode: process.env.PRODUCTION ? 'production' : 'development',
entry: [
'./js/index.js'
],
output: {
path: path.join(__dirname, 'dist'),
filename: 'app.js'
},
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel-loader'
},
{
test: /\.css$/,
loader: 'style-loader!css-loader'
},
{
test: /\.less$/,
loader: 'style-loader!css-loader!less-loader'
},
{
// Support ?123 suffix, e.g. ../fonts/m4d-icons.svg?3179539#iefix (for svg)
test: /\.(png|jpg|gif)((\?|#).*)?$/,
// inline base64 URLs for <=64k images, direct URLs for the rest
loader: 'url-loader?limit=65536'
},
{
// Support ?123 suffix, e.g. ../fonts/m4d-icons.eot?3179539#iefix
test: /\.(eot|ttf|woff|woff2)((\?|#).*)?$/,
loader: 'url-loader?limit=8192'
},
{
test: /\.glsl$/,
loader: 'raw-loader'
},
{
test: /\.kml$/,
loader: 'raw-loader'
},
{
// Pass global THREE variable to OrbitControls
test: /three[\\/]examples[\\/]js/,
loader: 'imports-loader?THREE=three'
},
{
// Pass global THREE variable to OrbitControls
test: /leaflet-plugins\//,
loader: 'imports-loader?L=leaflet'
},
{
test: /\.svg$/,
oneOf: [
{
// Do not apply SVGR import in CSS/LESS files.
issuer: /\.(less|css)$/,
use: 'url-loader'
},
{
issuer: /\.js$/,
loader: '@svgr/webpack',
options: {
svgoConfig: {
plugins: {
// SVGR removes viewbox by default. Disable this behavior.
removeViewBox: false
}
}
}
}
]
}
]
},
plugins: [
new CopyWebpackPlugin([
{ from: 'public' }
])
]
}
if (process.env.PRODUCTION) {
// We could use NODE_ENV directly (instead of PRODUCTION), but for some reason,
// when NODE_ENV is defined in command line, React does not seem to recognize it.
module.exports.plugins.push(
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify('production')
})
)
}