12 lines
246 B
JavaScript
12 lines
246 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
images: {
|
|
unoptimized: true
|
|
},
|
|
experimental: {
|
|
serverComponentsExternalPackages: ['@prisma/client', 'bcryptjs']
|
|
}
|
|
}
|
|
|
|
export default nextConfig |