Browse
For agents
About
Pdf Embed
/
trunk
Pdf Embed
vtrunk
Switch version
0.6.2
0.6.1
trunk
0.1.0
0.1.1
0.1.2
0.1.3
0.1.4
0.1.5
0.1.6
0.1.7
0.1.8
0.1.9
0.2.0
0.2.1
0.2.2
0.2.3
0.2.4
0.2.5
0.2.6
0.2.7
0.2.8
0.2.9
0.3.0
0.3.1
All 54 releases
Overview
Code
pdf-embed
/
webpack.config.js
webpack.config.js
in Pdf Embed trunk, at webpack.config.js
13 lines
272 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
const
defaultConfig
=
require
(
'
@wordpress/scripts/config/webpack.config
'
)
;
2
const
path
=
require
(
'
path
'
)
;
3
4
module
.
exports
=
[
5
{
6
...
defaultConfig
,
7
entry
:
{
8
...
defaultConfig
.
entry
(
)
,
9
'
admin-script
'
:
path
.
resolve
(
__dirname
,
'
src/admin/index.js
'
)
,
10
}
,
11
}
,
12
]
;
13