Spaces:
Sleeping
Sleeping
/** @type {import('next').NextConfig} */ | |
const nextConfig = { | |
reactStrictMode: true, | |
assetPrefix: process.env.NODE_ENV === 'production' ? '/' : '', | |
images: { | |
domains: ['huggingface.co'], | |
unoptimized: true, | |
}, | |
headers: async () => { | |
return [ | |
{ | |
source: '/:path*', | |
headers: [ | |
{ | |
key: 'Permissions-Policy', | |
value: 'microphone=self' | |
} | |
] | |
} | |
]; | |
} | |
} | |
module.exports = nextConfig |