Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 356 Bytes
5916048 53057cb 40c26ae 53057cb 5916048 53057cb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
/** @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 |