-
Notifications
You must be signed in to change notification settings - Fork 48.1k
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
TypeError: Assignment to constant variable. #16211
Comments
What I think you're trying to is something like this: const something = 1;
something = 2; Even though the path implies that the error happens in react, I think the error happens in your code, but it's difficult to tell from a single line. Perhaps you could share a little bit more (error stack)? |
@lidaof the error is coming from your code so there is either a typo/bug in what you've written or a problem compiling it. In either case it's not realted to React, and the React issue tracker is for React bugs. I'd recommend bisecting your code, commenting out bits and pieces until the error goes away and you can narrow down which part specifically is breaking it. |
Hi @jquense ok....so the problem only happens on build version, it's not happening in development version.......so the code should be fine.... |
@lidaof I would look at lines 112 and 126 at |
I am facing a similar issue today. @lidaof did you find out a solution to fix it? |
I am not sure if we have same condition, I updated typescript to 3.4 and create-react-app to 2.1 solved this problem. @shahchaitanya |
Thank you for reply @shahchaitanya . I think i did use it, but I don't know where to put this option. I was using react-app-rewire with react-scripts-ts |
@lidaof you can configure your web pack in webpack.config.js file. I put this option under webpack.config.js. |
thank you @shahchaitanya . I tried that but it's not working for me. Thanks again. |
I think there is a simple catch.....if you define it as const you cant change its value. To resolve it just define it by let and try. I was going through a similar error solved it by this. |
You just saved my day (after 10 hours of fiddling). |
Knock Knock, I am also facing the same problem. 😄 |
Do you want to request a feature or report a bug?
bug
What is the current behavior?
TypeError: Assignment to constant variable.
System: OSX
npm: 6.10.2
node: v10.13.0
react: 16.8.6
The text was updated successfully, but these errors were encountered: