html-webpack-cdn-path-plugin

0.1.3 • Public • Published

html-webpack-cdn-path-plugin

Works with Webpack 2.

Installation

npm i html-webpack-cdn-path-plugin --save-dev

Use

webpack.config.js:

const CdnPathWebpackPlugin = require("html-webpack-cdn-path-plugin");
 
module.exports = {
    entry: {
        app: ['./main.js'],
    },
    output: {
        filename: '[name].js',
        path: '.dist/',
        publicPath: '/'
    },
    plugins: [
        new CdnPathWebpackPlugin({
            runtimeCdnPath: ['//cdn1.static.com','//cdn2.static.com'],
            assetsJsCdnPath: ['//cdn1.static.com','//cdn2.static.com'],
            assetsCssCdnPath: ['//cdn1.static.com','//cdn2.static.com'],
        })
    ]
}

Result

1. manifest (use runtimeCdnPath)

/******/        // __webpack_public_path__
/******/        __webpack_require__.p = "/";
 
/******/        // publicPath override (html-webpack-cdn-path-plugin)
/******/        __webpack_require__.p = (["//cdn1.static.com","//cdn2.static.com"][Math.floor((Math.random()*2))]+'/') || __webpack_require__.p; // cdn + publicPath

2. assets js,css

jsUrl = randomAssetsJsCdnPathStr + output.publicPath + output.filename
cssUrl = randomAssetsCssCdnPathStr + output.publicPath + output.filename

License

The MIT License.

Thank

Package Sidebar

Install

npm i html-webpack-cdn-path-plugin

Weekly Downloads

5

Version

0.1.3

License

MIT

Last publish

Collaborators

  • geekbean