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/blog/index.tsx | 49 +++++++++++++++++++++++++----------------------- 1 file changed, 26 insertions(+), 23 deletions(-) (limited to 'src/pages/blog/index.tsx') diff --git a/src/pages/blog/index.tsx b/src/pages/blog/index.tsx index 3be8a99..1f88588 100644 --- a/src/pages/blog/index.tsx +++ b/src/pages/blog/index.tsx @@ -1,41 +1,44 @@ -import Notice from '@components/atoms/layout/notice'; -import PostsList from '@components/organisms/layout/posts-list'; -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 { getArticles, getTotalArticles } from '@services/graphql/articles'; +import { GetStaticProps } from 'next'; +import Head from 'next/head'; +import { useRouter } from 'next/router'; +import Script from 'next/script'; +import { useIntl } from 'react-intl'; +import Notice from '../../components/atoms/layout/notice'; +import PostsList from '../../components/organisms/layout/posts-list'; +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 { getArticles, getTotalArticles } from '../../services/graphql/articles'; import { getThematicsPreview, getTotalThematics, -} from '@services/graphql/thematics'; -import { getTopicsPreview, getTotalTopics } from '@services/graphql/topics'; -import { type NextPageWithLayout } from '@ts/types/app'; -import { EdgesResponse } from '@ts/types/graphql/queries'; +} from '../../services/graphql/thematics'; +import { + getTopicsPreview, + getTotalTopics, +} from '../../services/graphql/topics'; +import { type NextPageWithLayout } from '../../types/app'; +import { EdgesResponse } from '../../types/graphql/queries'; import { type RawArticle, type RawThematicPreview, type RawTopicPreview, -} from '@ts/types/raw-data'; -import { settings } from '@utils/config'; -import { loadTranslation, type Messages } from '@utils/helpers/i18n'; +} from '../../types/raw-data'; +import { settings } from '../../utils/config'; +import { loadTranslation, type Messages } from '../../utils/helpers/i18n'; import { getLinksListItems, getPageLinkFromRawData, getPostsList, -} from '@utils/helpers/pages'; +} from '../../utils/helpers/pages'; import { getBlogSchema, getSchemaJson, getWebPageSchema, -} from '@utils/helpers/schema-org'; -import useBreadcrumb from '@utils/hooks/use-breadcrumb'; -import usePagination from '@utils/hooks/use-pagination'; -import useSettings from '@utils/hooks/use-settings'; -import { GetStaticProps } from 'next'; -import Head from 'next/head'; -import { useRouter } from 'next/router'; -import Script from 'next/script'; -import { useIntl } from 'react-intl'; +} from '../../utils/helpers/schema-org'; +import useBreadcrumb from '../../utils/hooks/use-breadcrumb'; +import usePagination from '../../utils/hooks/use-pagination'; +import useSettings from '../../utils/hooks/use-settings'; type BlogPageProps = { articles: EdgesResponse; -- cgit v1.2.3