Skip to content

Latest commit

 

History

History
54 lines (35 loc) · 968 Bytes

README.md

File metadata and controls

54 lines (35 loc) · 968 Bytes

crossorigin-webpack-plugin

English | 简体中文

✨ Features

  • Zero-config, easy to use
  • Support webpack v2/3/4/5,support the latest webpack5
  • Support html-webpack-plugin v2/3/4/5

🚀 QuickStart

Install

yarn add -D crossorigin-webpack-plugin # OR npm i -D crossorigin-webpack-plugin

Usage

Please put it after HtmlWebpackPlugin

const CrossoriginWebpackPlugin = require('crossorigin-webpack-plugin')

const webpackConfig = {
  /* ... */
  plugins: [
    new HtmlWebpackPlugin(),
    new CrossoriginWebpackPlugin(),
  ],
  /* ... */
}

Config

Default config: { crossorigin: 'anonymous' }

new CrossoriginWebpackPlugin({ crossorigin: 'anonymous' })

😉😘 If it is helpful to you,please encourage me with a ⭐️Star ~

License

MIT

Copyright (c) 2018-present, komo