html-webpack-script-attributes-plugin

Addon for the html-webpack-plugin to customize the script attributes of script tag.

Usage no npm install needed!

<script type="module">
  import htmlWebpackScriptAttributesPlugin from 'https://cdn.skypack.dev/html-webpack-script-attributes-plugin';
</script>

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'
    })
  ]
}