Skip to content

Commit

Permalink
chore: remove default values from config file
Browse files Browse the repository at this point in the history
  • Loading branch information
corp-0 committed Mar 4, 2024
1 parent 983b41c commit bff5d8d
Showing 1 changed file with 22 additions and 24 deletions.
46 changes: 22 additions & 24 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,28 +1,26 @@
/** @type {import('next').NextConfig} */

module.exports = {
reactStrictMode: true,
swcMinify: true,
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'unitystationfile.b-cdn.net',
port: '',
pathname: '/**/**',
},
{
protocol: 'https',
hostname: 'cdn.discordapp.com',
port: '',
pathname: '/attachments/**',
},
{
protocol: 'https',
hostname: 'user-images.githubusercontent.com',
port: '',
pathname: '/**/**',
}
],
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'unitystationfile.b-cdn.net',
port: '',
pathname: '/**/**',
},
{
protocol: 'https',
hostname: 'cdn.discordapp.com',
port: '',
pathname: '/attachments/**',
},
{
protocol: 'https',
hostname: 'user-images.githubusercontent.com',
port: '',
pathname: '/**/**',
}
],
},
}

0 comments on commit bff5d8d

Please sign in to comment.