-
-
Notifications
You must be signed in to change notification settings - Fork 496
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issues while installing CRACO on CRA 5 #445
Comments
I'm still working on CRA 5 support, but progress has been made. You can install the alpha version to use craco with CRA 5.
You were probably looking at the old thread but there's a new one at #426. |
Thank you for replying so soon dilanx. I actually installed the alpha version and I'm not sure I'm using it correctly.
I can't tell if it's doing what it's supposed to do, but the app isn't working. Have i missed anything else? I modified the start scripts to
But still not working... |
@martinscola-hwm I think maybe it is due to the |
how stable is this alpha? I know it's an "alpha" but is it crazy to use on production? :D |
@dilanx any ETA when the alpha moves to stable ? |
@martinscola-hwm sorry for the super late response. I think your issue is that you're adding /* craco.config.js */
const CopyWebpackPlugin = require('copy-webpack-plugin');
module.exports = {
webpack: {
plugins: {
add: [
new CopyWebpackPlugin({
patterns: [
{ from: 'node_modules/theoplayer', to: 'src/resources/theoplayer' },
],
}),
],
},
},
}; |
Hi everyone,
I'm unable to install CRACO on a CRA 5 app. Unfortunately, due to a change asked on an already developed app, I need to access the CRA config and CRACO seemed the way to go about it. But unfortunately, the npm installation fails, since It's unable to reconcile the react-scripts 5 already in the app with the RS4 CRACO uses. I've seen no progress on the update to CRA5 support and can't comment on the thread where that was discussed, so I'm reaching out for help with this matter.
Any and all help will be welcomed.
The text was updated successfully, but these errors were encountered: