html-webpack-script-attributes-plugin
v2.0.2
Published
Addon for the html-webpack-plugin to customize the script attributes of script tag.
Downloads
3,186
Maintainers
Readme
html-webpack-script-attributes-plugin
Addon for the html-webpack-plugin to customize script attributes of script meta.
Usage
const HtmlWebpackPlugin = require('html-webpack-plugin')
// JS
const HtmlWebpackScriptAttributesPlugin = require('html-webpack-script-attributes-plugin').default
// TS
import HtmlWebpackScriptAttributesPlugin from 'html-webpack-script-attributes-plugin'
module.exports = {
plugins: [
new HtmlWebpackPlugin(),
new HtmlWebpackScriptAttributesPlugin({
crossorigin: 'anonymous'
})
]
}