/** @type {import('next').NextConfig} */
const nextConfig = {
  experimental: {
    serverActions: true,
    serverComponentsExternalPackages: ['sharp', 'onnxruntime-node'],
  },
  redirects: async () => {
    return [
      {
        source: '/',
        destination: '/search/0',
        permanent: true,
      },
    ]
  }
}

module.exports = nextConfig