DocSpring / craco-antd

A craco plugin to use Ant Design with create-react-app
MIT License
234 stars 49 forks source link

unable to work #43

Closed cieldon32 closed 2 years ago

cieldon32 commented 4 years ago

` const { BundleAnalyzerPlugin } = require("webpack-bundle-analyzer"); const WebpackBar = require("webpackbar"); const CracoAntDesignPlugin = require("craco-antd"); const path = require("path");

// Don't open the browser during development process.env.BROWSER = "none";

module.exports = { webpack: { plugins: [ new WebpackBar({ profile: true }), ...(process.env.NODE_ENV === "development" ? [new BundleAnalyzerPlugin({ openAnalyzer: false })] : []) ] }, plugins: [ { plugin: require("craco-preact") }, { plugin: CracoAntDesignPlugin, options: { customizeThemeLessPath: path.join( __dirname, "src/styles/antd-custom.less" ) } } ] };

`

And my .less file didn't work

cieldon32 commented 4 years ago

I do everything, but always: [nodemon] starting craco start

There might be a problem with the project dependency tree. It is likely not a bug in Create React App, but something you need to fix locally.

The react-scripts package provided by Create React App requires a dependency:

"babel-jest": "^24.9.0"

Don't try to install it manually: your package manager does it automatically. However, a different version of babel-jest was detected higher up in the tree:

/Users/cieldon/asu/xplor-monorepo/xplor-cra/node_modules/babel-jest (version: 23.6.0)

Manually installing incompatible versions is known to cause hard-to-debug issues.

If you would prefer to ignore this check, add SKIP_PREFLIGHT_CHECK=true to an .env file in your project. That will permanently disable this message but you might encounter other issues.

To fix the dependency tree, try following the steps below in the exact order:

  1. Delete package-lock.json (not package.json!) and/or yarn.lock in your project folder.
  2. Delete node_modules in your project folder.
  3. Remove "babel-jest" from dependencies and/or devDependencies in the package.json file in your project folder.
  4. Run npm install or yarn, depending on the package manager you use.

In most cases, this should be enough to fix the problem. If this has not helped, there are a few other things you can try:

  1. If you used npm, install yarn (http://yarnpkg.com/) and repeat the above steps with it instead. This may help because npm has known issues with package hoisting which may get resolved in future versions.

  2. Check if /Users/cieldon/asu/xplor-monorepo/xplor-cra/node_modules/babel-jest is outside your project directory. For example, you might have accidentally installed something in your home folder.

  3. Try running npm ls babel-jest in your project folder. This will tell you which other package (apart from the expected react-scripts) installed babel-jest.

If nothing else helps, add SKIP_PREFLIGHT_CHECK=true to an .env file in your project. That would permanently disable this preflight check in case you want to proceed anyway.

P.S. We know this message is long but please read the steps above :-) We hope you find them helpful!

[nodemon] app crashed - waiting for file changes before starting...

cieldon32 commented 4 years ago

./node_modules/rc-select/es/OptionList.js Attempted import error: 'Fragment' is not exported from 'react' (imported as 'React').

This mistake is so ridiculous that you don't use craco to make it.