react-in-angular
react-in-angular copied to clipboard
Error: React is not defined
After run ng build --prod
, it throws this error:
Did we get a solution for this?
Any solutions?
It seems you need to set aot: false
in angular.json.
{
"projects": {
"angular-react": { // This is the name of the project
"architect": {
"build": {
"options": {
"aot": false
}
}
}
}
}
}
- import react in angular.json
"assets": [
{
"glob": "react.production.min.js",
"input": "./node_modules/react/umd/",
"output": "/"
}
]
- add a script in index.html
<script src="react.production.min.js"></script>
Or you can import a cdn url.