Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialUnsubscribed User
441 PointsCreating React Search App, Issues after importing jumbotron and grid into the App.js?
my application page after typing npm start is giving me this error..
ie:
"ReferenceError: exports is not defined"
"["./node_modules/react-bootstrap/es/utils/createChainedFunction.js"]/< node_modules/react-bootstrap/es/utils/createChainedFunction.js:38
35 | } 36 | 37 | export default createChainedFunction;
38 | module.exports = exports['default']; 39 | 40 | 41 | //////////////////"
and so on..
the page is full of errors with webpack and node modules issues. i followed the steps exactly as the video did. any thoughts on what the problem is?
2 Answers
Seth Kroger
56,413 PointsLooks like the people at react-bootstrap broke it: https://github.com/react-bootstrap/react-bootstrap/pull/2856
Unsubscribed User
441 Pointsthank you seth!!
Seth Kroger
56,413 PointsSeth Kroger
56,413 PointsThey published the fix within the last hour. If you run
npm update
it should grab the fixed version for you.