Refactor next.config.mjs for improved readability and consistency
- Reformatted the structure of the `next.config.mjs` file for better readability. - Ensured consistent indentation and spacing throughout the configuration. - No functional changes were made; the configuration remains the same.
This commit is contained in:
parent
186bd3c2cc
commit
f8ce4bd871
@ -9,7 +9,7 @@ jiti.import('./env/client')
|
||||
|
||||
/** @type {import('next').NextConfig} */
|
||||
const nextConfig = {
|
||||
transpilePackages: ['geist'],
|
||||
transpilePackages: ["geist"],
|
||||
async headers() {
|
||||
return [
|
||||
{
|
||||
@ -50,45 +50,45 @@ const nextConfig = {
|
||||
protocol: 'https',
|
||||
hostname: 'metwm7frkvew6tn1.public.blob.vercel-storage.com',
|
||||
port: '',
|
||||
pathname: '**',
|
||||
pathname: "**"
|
||||
},
|
||||
// upload.wikimedia.org
|
||||
{
|
||||
protocol: 'https',
|
||||
hostname: 'upload.wikimedia.org',
|
||||
port: '',
|
||||
pathname: '**',
|
||||
pathname: '**'
|
||||
},
|
||||
// media.theresanaiforthat.com
|
||||
{
|
||||
protocol: 'https',
|
||||
hostname: 'media.theresanaiforthat.com',
|
||||
port: '',
|
||||
pathname: '**',
|
||||
pathname: '**'
|
||||
},
|
||||
// www.uneed.best
|
||||
{
|
||||
protocol: 'https',
|
||||
hostname: 'www.uneed.best',
|
||||
port: '',
|
||||
pathname: '**',
|
||||
pathname: '**'
|
||||
},
|
||||
// image.tmdb.org
|
||||
{
|
||||
protocol: 'https',
|
||||
hostname: 'image.tmdb.org',
|
||||
port: '',
|
||||
pathname: '/t/p/original/**',
|
||||
pathname: '/t/p/original/**'
|
||||
},
|
||||
// image.tmdb.org
|
||||
{
|
||||
protocol: 'https',
|
||||
hostname: 'image.tmdb.org',
|
||||
port: '',
|
||||
pathname: '/**',
|
||||
pathname: '/**'
|
||||
},
|
||||
],
|
||||
]
|
||||
},
|
||||
}
|
||||
};
|
||||
|
||||
export default nextConfig
|
||||
export default nextConfig;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user