Ecosyste.ms: Awesome

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

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: 3 months ago
JSON representation

rsbuild plugin for chrome/web extension

Lists

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,
}),
],
});
```