-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathwebpack.dev.config.js
More file actions
43 lines (42 loc) · 956 Bytes
/
webpack.dev.config.js
File metadata and controls
43 lines (42 loc) · 956 Bytes
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
const webpack = require('webpack');
const path = require('path');
module.exports = {
context: path.resolve(__dirname, 'src'),
entry: {
entry: './index.js'
},
output: {
path: path.resolve(__dirname, 'public/scripts'),
publicPath: 'scripts/',
filename: 'bundle.js'
},
devtool: 'eval-source-map',
module: {
// Apply `noParse` to Tangram to prevent mangling of UMD boilerplate
noParse: /tangram\/dist\/tangram/,
rules: [{
test: /\.jsx?$/,
include: path.resolve(__dirname, 'src'),
use: [{
loader: 'babel-loader',
options: {
plugins: [
['transform-react-jsx']
],
presets: [
['env']
]
}
}]
},
{
test: /\.css$/,
use: ['style-loader', 'css-loader']
},
{
// This is required to bundle images in Leaflet's stylesheet.
test: /\.png$/,
use: 'url-loader'
}]
},
};