项目作者: zhouchengi

项目描述 :
Addon for the html-webpack-plugin to customize script attributes of script meta
高级语言: TypeScript
项目地址: git://github.com/zhouchengi/html-webpack-script-attributes-plugin.git
创建时间: 2018-06-07T01:48:52Z
项目社区:https://github.com/zhouchengi/html-webpack-script-attributes-plugin

开源协议:MIT License

下载


html-webpack-script-attributes-plugin

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

Usage

  1. const HtmlWebpackPlugin = require('html-webpack-plugin')
  2. // JS
  3. const HtmlWebpackScriptAttributesPlugin = require('html-webpack-script-attributes-plugin').default
  4. // TS
  5. import HtmlWebpackScriptAttributesPlugin from 'html-webpack-script-attributes-plugin'
  6. module.exports = {
  7. plugins: [
  8. new HtmlWebpackPlugin(),
  9. new HtmlWebpackScriptAttributesPlugin({
  10. crossorigin: 'anonymous'
  11. })
  12. ]
  13. }