webpackbar
webpackbar copied to clipboard
create react app not work fine
config
const path = require(`path`);
const WebpackBar = require("webpackbar");
const CracoLessPlugin = require("craco-less");
module.exports = {
plugins: [
{
plugin: CracoLessPlugin,
options: {
lessLoaderOptions: {
lessOptions: {
modifyVars: { "@primary-color": "#1DA57A" },
javascriptEnabled: true,
},
},
},
},
],
webpack: {
alias: {
"@": path.resolve(__dirname, "src/"),
},
// @ts-ignore
plugins: [new WebpackBar({ name: "admin" })],
},
};
problem

Was getting the same issue. Investigating it noticed that it's related to the width. Try to increase it to see if it will be fixed.