UNPKG
print-of-dom
Version:
latest (1.0.0)
1.0.0
单独的对一个DOM进行打印,并且可以进行修改,过滤,删除的处理
print-of-dom
/
config
/
module.webpack.config.js
14 lines
(13 loc)
•
286 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const
base
=
require
(
"./base.webpack.config"
);
const
{ merge } =
require
(
"webpack-merge"
); module.exports =
merge
(base, {
experiments
: {
outputModule
:
true
, },
output
: {
filename
:
"print-of-dom.module.js"
,
library
: {
type
:
"module"
, }, }, });