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
I am gettin this Uncaught SyntaxError: ambiguous indirect export: useMatches error.
This only happens importing as a non-relative node module. import {useMatches} from 'react-router-dom'
The issue is resolved with a relative import from import {useMatches} from '../../node_modules/react-router/dist/index'
I just upgraded the react-router-dom package from ^6.2.2 to ^6.8.0.
Does anyone have any idea why this might be happening?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi all!
I am gettin this
Uncaught SyntaxError: ambiguous indirect export: useMatches
error.This only happens importing as a non-relative node module.
import {useMatches} from 'react-router-dom'
The issue is resolved with a relative import from
import {useMatches} from '../../node_modules/react-router/dist/index'
I just upgraded the react-router-dom package from ^6.2.2 to ^6.8.0.
Does anyone have any idea why this might be happening?
Beta Was this translation helpful? Give feedback.
All reactions