Skip to content

Commit

Permalink
remove basePath & fix the favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
vadimgierko committed Jan 29, 2024
1 parent 0b2a432 commit 4579d0b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
const nextConfig = {
reactStrictMode: true,
output: "export",
basePath: "/markdown-text-editor",
};

module.exports = nextConfig;
2 changes: 1 addition & 1 deletion src/components/Page/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default function Page({ pageData }: { pageData: PageData }) {
<Head>
<meta name="author" content="Vadim Gierko" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="markdown-text-editor/favicon.ico" />
<link rel="icon" href="/favicon.ico" />
<meta name="description" content={head.description} />
<title>{head.title}</title>
</Head>
Expand Down

0 comments on commit 4579d0b

Please sign in to comment.