feat(po): catalogue line items on approval + move /inventory/{items,vendors} ? /catalogue #108

Merged
shad0w merged 3 commits from feat/catalog-on-approval into master 2026-06-23 23:47:50 +00:00
3 changed files with 0 additions and 8 deletions
Showing only changes of commit 2bdf3a6536 - Show all commits

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;