Field ‘browser’ doesn’t contain a valid alias configuration

Turned out to be an issue with Webpack just not resolving an import – talk about horrible horrible error messages 🙁

// I Had to change:
import DoISuportIt from 'components/DoISuportIt';

// to (notice the missing `./`)
import DoISuportIt from './components/DoISuportIt';

Leave a Comment