DEV Community

Discussion on: Setup a path mapping through ts-config

Collapse
 
kostyatretyak profile image
Костя Третяк

Good practice when you divide the imports in your code into those imported from node_modules and those imported from your local files.

import { useRouter } from 'next/router';
import { NextSeo } from 'next-seo';

import Card from '@components/Cards';
import { IProject } from '@models/project.model';
Enter fullscreen mode Exit fullscreen mode
Collapse
 
yteruel31 profile image
yteruel31

Thanks for your tip!