Skip to content

webdeveric/webpack-plugin-modify-entrypoints

Repository files navigation

webpack-plugin-modify-entrypoints

Node.js CI

Install

pnpm add webpack-plugin-modify-entrypoints -D

Example usage

Import plugin in your webpack config.

import { ModifyEntryPoints } from 'webpack-plugin-modify-entrypoints';

Add this to your plugins array.

new ModifyEntryPoints({
  modify(source, details) {
    return `
      // Before
      ${source}
      // After
    `;
  },
});