UNPKG
nextcode
Version:
latest (2021.8.1)
2021.8.1
2021.7.31
2021.7.22
2021.7.21
2021.6.27
2021.6.26
2021.6.22
2021.6.21
2021.6.19
2021.6.18
2021.6.17
2021.6.16
## 设计思路
nextcode
/
webpack.config.js
13 lines
(12 loc)
•
296 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
const
path
=
require
(
"path"
);
module
.exports = { mode:
"production"
, entry: [
"./NextCode.js"
],
output
: {
path
:
path
.resolve(__dirname,
"./dist"
), filename:
"NextCode.js"
, libraryTarget:
"umd"
, globalObject:
"this"
, library:
"NextCode"
} };