Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/syi0808/fcb
https://github.com/syi0808/fcb
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/syi0808/fcb
- Owner: syi0808
- Created: 2022-09-08T06:42:13.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-23T02:20:21.000Z (5 months ago)
- Last Synced: 2024-11-02T12:05:43.164Z (6 days ago)
- Language: JavaScript
- Size: 361 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Find Contributor with React
![Screenshot](https://github.com/syi0808/FCB/blob/main/screenshot.png?raw=true)### How to use
(Alt or Option) + Space = toggle tooltip
#### When turn on tooltip
You can scroll through the tooltip while the Shift key is pressed.### Get Setup
```shell
npm install fcb-webpack-plugin
```
or
```shell
yarn add fcb-webpack-plugin
```
#### In NextJS
Paste in ```next.config.js```
```js
/** @type {import('next').NextConfig} */
const FCBPlugin = require("fcb-webpack-plugin");const nextConfig = {
reactStrictMode: true,
swcMinify: true,
webpack(config) {
config.plugins.push(new FCBPlugin());
return config;
}
};module.exports = nextConfig;
```### Plugin Options
#### enabled
This option is an option to indicate the activation status.
If enabled is false, this plugin is not executed.
```js
/** @type {import('next').NextConfig} */
const FCBPlugin = require("fcb-webpack-plugin");const nextConfig = {
reactStrictMode: true,
swcMinify: true,
webpack(config) {
config.plugins.push(new FCBPlugin({ enabled: false }));
return config;
}
};module.exports = nextConfig;
```