newying61 / webpack-runtime-public-path-plugin

A plugin that lets you override the Webpack modules public path in webpage runtime.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

webpack-runtime-public-path-plugin

A plugin that lets you override the Webpack modules public path in webpage runtime.

Configuration

const RuntimePublicPathPlugin = require("webpack-runtime-public-path-plugin")
    plugins: [
        ...
        new RuntimePublicPathPlugin({
            runtimePublicPath: "'/foo/bar/'"
        })
        ...
    ]

Result

/******/        // __webpack_public_path__
/******/        __webpack_require__.p = "/dist/";

/******/        // Dynamic assets path override (runtime-public-path-webpack-plugin)
/******/        __webpack_require__.p = ('/foo/bar/') || __webpack_require__.p;

About

A plugin that lets you override the Webpack modules public path in webpage runtime.


Languages

Language:JavaScript 100.0%