12 lines
276 B
TypeScript
12 lines
276 B
TypeScript
import type { NextConfig } from "next"
|
|
|
|
const nextConfig: NextConfig = {
|
|
server: {
|
|
allowedHosts: ["tickets.esdrasrenan.com.br", "convex.esdrasrenan.com.br", "localhost"],
|
|
},
|
|
experimental: {
|
|
turbopackFileSystemCacheForDev: true,
|
|
},
|
|
}
|
|
|
|
export default nextConfig
|