You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 26, 2019. It is now read-only.
Copy file name to clipboardexpand all lines: packages/react-scripts/template/README.md
+15
Original file line number
Diff line number
Diff line change
@@ -100,6 +100,7 @@ You can find the most recent version of this guide [here](https://github.com/fac
100
100
-[`npm run build` fails on Heroku](#npm-run-build-fails-on-heroku)
101
101
-[`npm run build` fails to minify](#npm-run-build-fails-to-minify)
102
102
-[Moment.js locales are missing](#momentjs-locales-are-missing)
103
+
-[TypeError: Cannot read property _foo_ on undefined](#typeerror-cannot-read-property-foo-on-undefined)
103
104
-[Alternatives to Ejecting](#alternatives-to-ejecting)
104
105
-[Something Missing?](#something-missing)
105
106
@@ -2439,6 +2440,20 @@ To resolve this:
2439
2440
2440
2441
In the future, we might start automatically compiling incompatible third-party modules, but it is not currently supported. This approach would also slow down the production builds.
2441
2442
2443
+
### TypeError: Cannot read property _foo_ on undefined
2444
+
2445
+
When importing a module, you might need to use
2446
+
2447
+
```typescript
2448
+
import * as foo from 'foo';
2449
+
```
2450
+
2451
+
instead of
2452
+
2453
+
```typescript
2454
+
import foo from 'foo';
2455
+
```
2456
+
2442
2457
## Alternatives to Ejecting
2443
2458
2444
2459
[Ejecting](#npm-run-eject) lets you customize anything, but from that point on you have to maintain the configuration and scripts yourself. This can be daunting if you have many similar projects. In such cases instead of ejecting we recommend to *fork* `react-scripts` and any other packages you need. [This article](https://auth0.com/blog/how-to-configure-create-react-app/) dives into how to do it in depth. You can find more discussion in [this issue](https://github.com/facebookincubator/create-react-app/issues/682).
0 commit comments