- Add virtualized list using react-virtuoso for smooth scrolling - Filter by category, verb, quality score, and search - Expandable cards with parameters, returns, AI guidance - Add redirect from /tools-ideas to /tool-ideas 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
18 lines
437 B
TypeScript
18 lines
437 B
TypeScript
import type { NextConfig } from 'next';
|
|
|
|
const nextConfig: NextConfig = {
|
|
transpilePackages: ['@tpmjs/ui', '@tpmjs/utils', '@tpmjs/db', '@tpmjs/types', '@tpmjs/env'],
|
|
reactStrictMode: true,
|
|
serverExternalPackages: ['@tpmjs/package-executor'],
|
|
async redirects() {
|
|
return [
|
|
{
|
|
source: '/tools-ideas',
|
|
destination: '/tool-ideas',
|
|
permanent: true,
|
|
},
|
|
];
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|