Skip to content

syi0808/FCB

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Find Contributor with React

Screenshot

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

npm install fcb-webpack-plugin

or

yarn add fcb-webpack-plugin

In NextJS

Paste in next.config.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.

/** @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;

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published