UNPKG
iwebapp
Version:
latest (0.0.2)
0.0.2
0.0.1
前端全栈练手项目
github.com/Zhangyei/iWebApp
Zhangyei/iWebApp
iwebapp
/
webpack.config.js
14 lines
•
286 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module.exports
=
{
entry:
'./src/index.js'
,
output:
{
path:
__dirname
,
filename:
'./release/bundle.js'
},
module:
{
rules:
[{
test:
/\.js?$/
,
exclude:
/(node_modules)/
,
loader:
'babel-loader'
}] } }