UNPKG
zlf-library
Version:
latest (1.0.1)
1.0.1
1.0.0
zlf-library
/
webpack.config.js
11 lines
•
351 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
const
path
=
require
(
"path"
)
module
.exports = { entry:
"./src/index.js"
, mode:
"production"
,
output
:{
path
:
path
.resolve(__dirname,
"dist"
), filename:
"library.js"
, libraryTarget:
"umd"
, //任何形式都可以引入 library:
"library"
, //支持script标签引入挂载到library全局变量上 } }