mirror of
https://github.com/0xShay/ticketchain.git
synced 2026-01-11 05:03:26 +00:00
9 lines
166 B
JavaScript
9 lines
166 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
experimental: {
|
|
missingSuspenseWithCSRBailout: false,
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|