UNPKG
kuyin-webpack-plugins
Version:
latest (1.7.2)
1.7.2
1.7.1
1.7.0
1.6.0
1.5.0
1.3.0
1.0.0
custom webpack, enhanced-resolve plugins
kuyin-webpack-plugins
/
lib
/
plugins
/
ChangeAssetsPathWebpackPlugin.d.ts
11 lines
(10 loc)
•
307 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
Compiler
}
from
'webpack'
;
export
interface
ChangeAssetsPathOptions
{
assetsPath
:
string
;
ignore
?:
RegExp
; }
export
declare
class
ChangeAssetsPathWebpackPlugin
{
options
:
ChangeAssetsPathOptions
;
constructor
(
options
:
ChangeAssetsPathOptions
);
apply
(
compiler
:
Compiler
):
void
; }