insert-source-webpack-plugin

1.0.0 • Public • Published

npm

Insert Source Webpack Plugin

Insert script or link to your HTML

Install

  npm i --save-dev insert-source-webpack-plugin
  yarn add --dev insert-source-webpack-plugin

Usage

It must be used before html-webpack-plugin

webpack.config.js

const CopyPlugin = require("copy-webpack-plugin");
const HtmlWebPackPlugin = require("html-webpack-plugin");
const InsertSourceWebpackPlugin = require("insert-source-webpack-plugin");

module.exports = {
  entry: {
    index: path.resolve(__dirname, "./src/index.tsx"),
  },
  output: {
    path: path.resolve(__dirname, "./dist"),
    filename: "[name].[contenthash:8].js",
  },
  plugins: [
    new CopyPlugin({
      patterns: [
        {
          // react
          from: "node_modules/react/umd/react.production.min.js",
          to: `common/[name].[contenthash:8][ext]`,
        },
        {
          // react-dom
          from: "node_modules/react-dom/umd/react-dom.production.min.js",
          to: "common/[name].[contenthash:8][ext]",
        },
      ],
    }),
    new HtmlWebPackPlugin({
      template: "./src/index.html",
      filename: "./index.html",
    }),
    new InsertSourceWebpackPlugin({
      replaceDomain: 'https://xxx.com',
    }),
  ],
};

In template HTML you need write <script></script>, because insert-webpack-plugin will find it and replace it with generated result

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <title>Webpack App</title>
    <script></script>
  </head>
  <body></body>
</html>

This will generate a file dist/index.html containing the following

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <title>Webpack App</title>
    <script
      defer
      src="https://xxx.com/common/react.production.min.356d96cc.js"
    ></script>
    <script
      defer
      src="https://xxx.com/common/react-dom.production.min.53ffa649.js"
    ></script>
    <script defer src="index.f61edb87.js"></script>
  </head>
  <body></body>
</html>

Readme

Keywords

none

Package Sidebar

Install

npm i insert-source-webpack-plugin

Weekly Downloads

0

Version

1.0.0

License

MIT

Unpacked Size

4.7 kB

Total Files

3

Last publish

Collaborators

  • shuxiaotai