UNPKG
npm-test-marx
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
test
github.com/mingzheMa/npm-test
mingzheMa/npm-test
npm-test-marx
/
config
/
webpack.config.js
12 lines
(10 loc)
•
268 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
const
path
=
require(
"path"
)
module
.
exports
= { mode:
"none"
,
// 模式
entry: path.resolve(__dirname,
"../src/index.js"
),
// 入口
// 出口
output: { filename:
"index.js"
,
// 文件名
path: path.resolve(__dirname,
"../dist"
)
// 文件路径
} }