2
I would like to know the difference between the codes below:
import module from '@module'
import module from 'module'
I recently had a problem where I had to stop using
import firebase from 'firebase'
and put
import firebase from '@firebase'
Thanks in advance.
Related: https://answall.com/questions/213910/javascript-diff%C3%A7as-entre-import-e-require
– Wallace Maxters
To whom it concerns, What is the meaning of the "at" (@) prefix on npm Packages?
– Woss
It may also be that this @ is being used as an alias, for example in that reply. In which part of the examples are being used
./
?– Renan Gomes