Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion packages/docs/next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ const withMDX = mdx({
const nextConfig = {
output: 'export',
reactStrictMode: true,
basePath: "/applemusic-like-lyrics",
pageExtensions: ["js", "jsx", "mdx", "ts", "tsx"],
Copy link

Copilot AI Jan 16, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removing the basePath requires updating hardcoded paths in the codebase. The following files still contain the old /applemusic-like-lyrics prefix: src/app/[lang]/page.tsx (line 13, Image src), src/app/layout.tsx (line 8, icons path), and README.md (line 5, documentation link). These paths should be updated to remove the /applemusic-like-lyrics prefix and use root-relative paths instead.

Copilot uses AI. Check for mistakes.
Copy link

Copilot AI Jan 16, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The README.md at line 5 still references the old URL path with /applemusic-like-lyrics. If the site will be deployed to a different location or root path, this documentation link needs to be updated to reflect the new deployment URL.

Copilot uses AI. Check for mistakes.
};

Expand Down
Loading