You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Specifies the filename template of non-initial output css files on disk. You must **not** specify an absolute path here, but the path may contain folders separated by '/'! The specified path is joined with the value of the 'output.path' option to determine the location on disk.
448
+
*/
449
+
exporttypeCssChunkFilename=FilenameTemplate;
450
+
/**
451
+
* Specifies the filename template of output css files on disk. You must **not** specify an absolute path here, but the path may contain folders separated by '/'! The specified path is joined with the value of the 'output.path' option to determine the location on disk.
452
+
*/
453
+
exporttypeCssFilename=FilenameTemplate;
446
454
/**
447
455
* Similar to `output.devtoolModuleFilenameTemplate`, but used in the case of duplicate module identifiers.
448
456
*/
@@ -1976,6 +1984,14 @@ export interface Output {
1976
1984
* This option enables cross-origin loading of chunks.
1977
1985
*/
1978
1986
crossOriginLoading?: CrossOriginLoading;
1987
+
/**
1988
+
* Specifies the filename template of non-initial output css files on disk. You must **not** specify an absolute path here, but the path may contain folders separated by '/'! The specified path is joined with the value of the 'output.path' option to determine the location on disk.
1989
+
*/
1990
+
cssChunkFilename?: CssChunkFilename;
1991
+
/**
1992
+
* Specifies the filename template of output css files on disk. You must **not** specify an absolute path here, but the path may contain folders separated by '/'! The specified path is joined with the value of the 'output.path' option to determine the location on disk.
1993
+
*/
1994
+
cssFilename?: CssFilename;
1979
1995
/**
1980
1996
* Similar to `output.devtoolModuleFilenameTemplate`, but used in the case of duplicate module identifiers.
* This option enables cross-origin loading of chunks.
3113
3141
*/
3114
3142
crossOriginLoading?: CrossOriginLoading;
3143
+
/**
3144
+
* Specifies the filename template of non-initial output css files on disk. You must **not** specify an absolute path here, but the path may contain folders separated by '/'! The specified path is joined with the value of the 'output.path' option to determine the location on disk.
3145
+
*/
3146
+
cssChunkFilename?: CssChunkFilename;
3147
+
/**
3148
+
* Specifies the filename template of output css files on disk. You must **not** specify an absolute path here, but the path may contain folders separated by '/'! The specified path is joined with the value of the 'output.path' option to determine the location on disk.
3149
+
*/
3150
+
cssFilename?: CssFilename;
3115
3151
/**
3116
3152
* Similar to `output.devtoolModuleFilenameTemplate`, but used in the case of duplicate module identifiers.
0 commit comments