UNPKG
test-weather-fork
Version:
latest (1.1.1-beta-2)
1.1.1
1.1.1-beta-2
1.1.1-beta-1
1.1.1-beta
React Weather component
github.com/JohanBjerning/react-open-weather
JohanBjerning/react-open-weather
test-weather-fork
/
webpack.config.dev.js
20 lines
(19 loc)
•
306 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module.exports
=
{
entry:
{
main:
'./src/js/main.js'
, },
output:
{
filename:
'./dist/js/[name].js'
, },
devtool:
'source-map'
,
module:
{
rules:
[ {
test:
/\.js$/
,
exclude:
/(node_modules)/
,
loader:
'babel-loader'
, }, ], },
plugins:
[], }
;