craco icon indicating copy to clipboard operation
craco copied to clipboard

Create React App Configuration Override, an easy and comprehensible configuration layer for Create React App.

Results 67 craco issues
Sort by recently updated
recently updated
newest added

Is it possible to use craco to set multiple entry points? Similar to ``` module.exports = { devtool: "source-map", entry: { app: ["./src/index.js"], silentRenew: ["./silent_renew/index.js"] ```

Hey everyone, after upgrade to @craco/craco@alpha, my item just meet this problem. i try use fallback: { './HTML5Backend': 'HTML5Backend.js', }, but it not work. so i don't know how it...

Hey! This project has been pretty inactive for a while, but we've decided to continue the update to CRA 5 and attempt to address any other issues that arise. Hopefully,...

Hello devs ! # My problem I wanted to use an `index.html` file from my `src` directory (not from the `public` folder) which is one of the features in the...

`craco.config.js` like this ```js module.exports = { devServer: (devServerConfig, { env, paths, proxy, allowedHost }) => { devServerConfig.client.overlay.errors = false; // other... return devServerConfig; }, }; ``` It works in...

I tried [this example](https://github.com/gsoft-inc/craco/blob/master/recipes/extends-post-css-plugins/craco.config.js) with CRA v5, but it doesn't work. You can check sample repo [here](https://github.com/AndrejGajdos/craco-test/blob/main/craco.config.js) where I tried to use `postcss-color-rgb`. You can run the project, but [the...

Seems like react-scripts (CRA) is using an hard-coded path for reading the .env files (reading from project's folder). How can I use craco or a craco plugin to override it?...

I am trying to ensure that all of my css is imported via a style tag rather than an emitted file. However, when i try adding the style-loader to the...

Using CRACO on a CRA 4.x React application, I need to configure `@mdx-js/loader` to use rehype plugins, and `rehype-slug` in particular. Now, rehype-slug's documentation says that I need to "import"...

Loving this plugin! Came in super handy when I want to add the whyDidYourRender plugin to my app. However, although I'm sure I'm missing something super simple, I'm trying to...