Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { NextConfig } from 'next'
import { after } from './after'
const nextConfig: NextConfig = {
compiler: {
runAfterProductionCompile: async ({ distDir, projectDir }) => {
await after({ distDir, projectDir })
},
},
}
export default nextConfig