diff --git a/next.config.js b/next.config.js index c6a9a50..ebb1e74 100644 --- a/next.config.js +++ b/next.config.js @@ -4,25 +4,25 @@ const nextConfig = { images: { remotePatterns: [ { - protocol: "https", - hostname: "github.com", - pathname: "/shadcn.png", - }, - ], + protocol: 'https', + hostname: 'github.com', + pathname: '/shadcn.png' + } + ] }, - async headers() { + async headers () { return [ { - source: "/(.*)", + source: '/(.*)', headers: [ { - key: "Cache-Control", - value: "public, max-age=2592000", - }, - ], - }, - ]; - }, -}; + key: 'Cache-Control', + value: 'public, max-age=2592000' + } + ] + } + ] + } +} -module.exports = nextConfig; +module.exports = nextConfig