From 2faf2e34331703b3bdea3eb487cb8799c8d65377 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Tue, 19 Sep 2023 18:13:57 +0200 Subject: refactor(build): replace paths aliases with relative paths Using paths aliases starting with "@" can be confusing and can lead to conflict with existings modules. I prefer to use relative paths to avoid extra configuration in tools because of these aliases. --- src/pages/404.tsx | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) (limited to 'src/pages/404.tsx') diff --git a/src/pages/404.tsx b/src/pages/404.tsx index c3a5cac..a6d84f5 100644 --- a/src/pages/404.tsx +++ b/src/pages/404.tsx @@ -1,29 +1,29 @@ -import Link from '@components/atoms/links/link'; -import SearchForm from '@components/organisms/forms/search-form'; -import LinksListWidget from '@components/organisms/widgets/links-list-widget'; -import { getLayout } from '@components/templates/layout/layout'; -import PageLayout from '@components/templates/page/page-layout'; +import { GetStaticProps } from 'next'; +import Head from 'next/head'; +import { ReactNode } from 'react'; +import { useIntl } from 'react-intl'; +import Link from '../components/atoms/links/link'; +import SearchForm from '../components/organisms/forms/search-form'; +import LinksListWidget from '../components/organisms/widgets/links-list-widget'; +import { getLayout } from '../components/templates/layout/layout'; +import PageLayout from '../components/templates/page/page-layout'; import { getThematicsPreview, getTotalThematics, -} from '@services/graphql/thematics'; -import { getTopicsPreview, getTotalTopics } from '@services/graphql/topics'; -import { type NextPageWithLayout } from '@ts/types/app'; +} from '../services/graphql/thematics'; +import { getTopicsPreview, getTotalTopics } from '../services/graphql/topics'; +import { type NextPageWithLayout } from '../types/app'; import { type RawThematicPreview, type RawTopicPreview, -} from '@ts/types/raw-data'; -import { loadTranslation, type Messages } from '@utils/helpers/i18n'; +} from '../types/raw-data'; +import { loadTranslation, type Messages } from '../utils/helpers/i18n'; import { getLinksListItems, getPageLinkFromRawData, -} from '@utils/helpers/pages'; -import useBreadcrumb from '@utils/hooks/use-breadcrumb'; -import useSettings from '@utils/hooks/use-settings'; -import { GetStaticProps } from 'next'; -import Head from 'next/head'; -import { ReactNode } from 'react'; -import { useIntl } from 'react-intl'; +} from '../utils/helpers/pages'; +import useBreadcrumb from '../utils/hooks/use-breadcrumb'; +import useSettings from '../utils/hooks/use-settings'; type Error404PageProps = { thematicsList: RawThematicPreview[]; -- cgit v1.2.3