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: 2 months ago
JSON representation
rsbuild plugin for chrome/web extension
- Host: GitHub
- URL: https://github.com/filc-dev/rsbuild-plugin-web-extension
- Owner: filc-dev
- Created: 2024-03-16T18:46:21.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-10-29T17:51:25.000Z (2 months ago)
- Last Synced: 2024-10-29T18:32:24.648Z (2 months ago)
- Language: TypeScript
- Homepage: https://rsbuild-plugin-web-extension.filc.io
- Size: 431 KB
- Stars: 10
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
- awesome-rspack - rsbuild-plugin-web-extension
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)