UNPKG
wedding
Version:
latest (1.0.0)
1.0.0
wedding
/
webpack.config.js
11 lines
(8 loc)
•
164 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
var
path
=
require
(
'path'
);
module
.exports = { entry:
'./app/index.js'
,
output
: { filename:
'bundle.js'
,
path
:
path
.resolve(__dirname,
'dist'
) } };