VideoChain-UI / next.config.js
jbilcke-hf's picture
jbilcke-hf HF staff
preparing repo for multivideo
8f24b44
raw
history blame
380 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
experimental: {
serverActions: true,
},
/*
async redirects() {
return [
{
source: '/api/download/:id*',
destination: `${process.env.VC_VIDEOCHAIN_API_URL}/download/:id*`,
permanent: true,
},
]
},
*/
}
module.exports = nextConfig