Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/filc-dev/rsbuild-plugin-web-extension

rsbuild plugin for chrome/web extension
https://github.com/filc-dev/rsbuild-plugin-web-extension

Last synced: 2 months ago
JSON representation

rsbuild plugin for chrome/web extension

Awesome Lists containing this project

README

        

# rsbuild-plugin-web-extension

> rsbuild plugin for chrome/web extension

## Get started

install the plugin

```bash
npm i -D rsbuild-plugin-web-extension
```

```bash
pnpm i -D rsbuild-plugin-web-extension
```

```bash
yarn add -D rsbuild-plugin-web-extension
```

add the plugin to your rsbuild.config.js

```ts
import { pluginWebExtension } from "rsbuild-plugin-web-extension";
import manifest from "./manifest";

export default defineConfig({
plugins: [
pluginWebExtension({
manifest,
}),
],
});
```

## Examples

- [rsbuild-chrome-extension-boilerplate-react](https://github.com/filc-dev/rsbuild-chrome-extension-boilerplate-react)