“Como não usar as importações relativas no React JS” Respostas de código

Como não usar as importações relativas no React JS

// create a jsconfig.json file in your root dir(where package.json is located) and add this:
{
  "compilerOptions": {
    "baseUrl": "src"
  }
}
Anxious Alligator

Como não usar as importações relativas no React JS

// create an .env file in the project's root dir(where package.json is located) and add
NODE_PATH=src
// and if this does not work try
NODE_PATH=./src
Anxious Alligator

Respostas semelhantes a “Como não usar as importações relativas no React JS”

Perguntas semelhantes a “Como não usar as importações relativas no React JS”

Mais respostas relacionadas para “Como não usar as importações relativas no React JS” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código