Skip to content

Commit

Permalink
style: format code with Prettier and StandardJS
Browse files Browse the repository at this point in the history
This commit fixes the style issues introduced in f97aa9e according to the output
from Prettier and StandardJS.

Details: None
  • Loading branch information
deepsource-autofix[bot] authored Nov 15, 2023
1 parent f97aa9e commit 9f07cfb
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 9f07cfb

Please sign in to comment.