1.1.5 • Published 2 years ago

fcb-webpack-plugin v1.1.5

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

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;
1.1.5

2 years ago

1.1.4

2 years ago

1.1.3

2 years ago

1.1.2

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago

0.0.14

2 years ago

0.0.13

2 years ago

0.0.12

2 years ago

0.0.11

2 years ago

0.0.10

2 years ago

0.0.9

2 years ago

0.0.8

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago