From 9f07cfb4392255ff6ac814ade599fa6524f6dec4 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Wed, 15 Nov 2023 16:17:21 +0000 Subject: [PATCH] style: format code with Prettier and StandardJS This commit fixes the style issues introduced in f97aa9e according to the output from Prettier and StandardJS. Details: None --- next.config.js | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) 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