chore: rename e2e folder to catalogue + drop /inventory redirects
All checks were successful
PR checks / checks (pull_request) Successful in 43s
PR checks / integration (pull_request) Successful in 31s

- tests/e2e/inventory → tests/e2e/catalogue (folder name only; playwright globs
  ./tests/e2e so nothing else changes).
- remove the next.config redirects from /inventory/{items,vendors}: the old
  routes are intentionally left free for a future feature.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Hardik 2026-06-24 05:06:44 +05:30
parent d7b455ab7d
commit 2bdf3a6536
3 changed files with 0 additions and 8 deletions

View file

@ -19,14 +19,6 @@ const nextConfig: NextConfig = {
: []), : []),
], ],
}, },
// The product catalogue moved from /inventory/{items,vendors} to
// /catalogue/{items,vendors}; keep old links (bookmarks, emails) working.
async redirects() {
return [
{ source: "/inventory/items/:path*", destination: "/catalogue/items/:path*", permanent: true },
{ source: "/inventory/vendors/:path*", destination: "/catalogue/vendors/:path*", permanent: true },
];
},
}; };
export default nextConfig; export default nextConfig;