Commit 97e53f5
Artem Sapegin
Changelog: 🚀
## New features
New `htmlAttributes` option to change `<html>` tag attributes, generate `<html lang="en">` by default.
```js
const MiniHtmlWebpackPlugin = require('mini-html-webpack-plugin');
const config = {
plugins: [
new MiniHtmlWebpackPlugin({
context: {
title: 'Webpack demo',
htmlAttributes: { lang: 'en' } // Optional, defaults to { lang: 'en' }
},
})
]
};
```
([#8](#8) by @J-Kallunki)
## Breaking changes
* Node 8.12 is the minimum required version.1 parent 04f0798 commit 97e53f5
File tree
0 file changed
+0
-0
lines changed0 file changed
+0
-0
lines changed
0 commit comments