Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
March 26, 2022 05:31 am GMT

Absolute import in create-react-app

Want to get rid of the annoying, long, boring import statements in react?

import {Card} from './../../components/Card';

Just create a jsconfig.json file in your projects root directory and the following code

{    "compilerOptions": { "baseUrl": "src" },    "include": ["src"]}  

Yaa it is that much simple to do now you can go into your file and replace the previous code with

import {Card} from 'components/Card';

Make sure you restart the server after creating the jsconfig.json file

  • Now do you want create jsconfig.json file all of your projects in more efficient way?

  • Then Open up your project root directory in the terminal and run

npx react-jsconfig

It will automatically generate the jsconfig.json file for you

Learn More About react-jsconfig


Original Link: https://dev.to/ashirbadgudu/absolute-import-in-create-react-app-10ga

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To