An open API service indexing awesome lists of open source software.

https://github.com/webdeveric/webpack-plugin-modify-entrypoints

webpack plugin to modify entrypoint contents
https://github.com/webdeveric/webpack-plugin-modify-entrypoints

entrypoints modify plugin webpack

Last synced: 2 months ago
JSON representation

webpack plugin to modify entrypoint contents

Awesome Lists containing this project

README

        

# `webpack-plugin-modify-entrypoints`

[![Node.js CI](https://github.com/webdeveric/webpack-plugin-modify-entrypoints/actions/workflows/node.js.yml/badge.svg?branch=master)](https://github.com/webdeveric/webpack-plugin-modify-entrypoints/actions/workflows/node.js.yml)

## Install

`pnpm add webpack-plugin-modify-entrypoints -D`

## Example usage

Import plugin in your webpack config.

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

Add this to your plugins array.

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