60f6e9d2e1
Next.js 14 + Prisma + Stripe + Google Sheets + Nodemailer
10 lines
155 B
JavaScript
10 lines
155 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
}
|
|
|
|
export default nextConfig
|