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
Copy file name to clipboardExpand all lines: README.md
+40-5Lines changed: 40 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -230,11 +230,26 @@ If you have discovered a bug or have a feature suggestion, feel free to create a
230
230
231
231
For full release notes see the [changelog](https://github.com/webdiscus/html-bundler-webpack-plugin/blob/master/CHANGELOG.md).
232
232
233
-
> **Warning**\
234
-
> **Limitation**
235
-
>
236
-
> The current version works stable with `cache.type` as `'memory'` (Webpack's default setting).\
237
-
> Support for the `'filesystem'` cache type is experimental and under development.
233
+
## ⚠️ Limitations
234
+
235
+
### Cache type
236
+
237
+
The current version works stable with `cache.type` as `'memory'` (Webpack's default setting).\
238
+
Support for the `'filesystem'` cache type is experimental.
239
+
240
+
### Multiple config files
241
+
242
+
The multiple config files are not supported, because in some special use cases the Webpack API works not properly (all previous configurations are overridden by the latest configuration).
243
+
244
+
Instead of this:
245
+
```
246
+
npx webpack -c app1.config.js app2.config.js
247
+
```
248
+
you can use following:
249
+
```
250
+
npx webpack -c app1.config.js
251
+
npx webpack -c app2.config.js
252
+
```
238
253
239
254
---
240
255
@@ -524,6 +539,7 @@ See [boilerplate](https://github.com/webdiscus/webpack-html-scss-boilerplate)
524
539
2.[Problems & Solutions](#solutions)
525
540
-[Automatic resolving of file extensions](#solutions-resolve-extensions)
526
541
-[How to use `@import url()` in CSS](#solutions-import-url-in-css)
542
+
-[How to disable resolving in commented out tag](#solutions-disable-resolving-in-commented-out-tag)
@@ -6021,6 +6037,25 @@ The plugin does not support handling of `@import url()` in CSS. Imported url wil
6021
6037
>
6022
6038
> The `*.css` files imported in CSS are not handled, therefore these files must be manually copied to the `dist/` folder using the `copy-webpack-plugin`.
Copy file name to clipboardExpand all lines: package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "html-bundler-webpack-plugin",
3
-
"version": "3.6.5",
3
+
"version": "3.7.0",
4
4
"description": "HTML bundler plugin for webpack handles a template as an entry point, extracts CSS and JS from their sources referenced in HTML, supports template engines like Eta, EJS, Handlebars, Nunjucks.",
0 commit comments