34 lines
680 B
JavaScript
34 lines
680 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
icons: {
|
|
icon: '/favicon.ico',
|
|
},
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'http',
|
|
hostname: 'localhost:8000',
|
|
port: '',
|
|
pathname: '/**',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'api.foldbank.codingcoffee.me',
|
|
port: '',
|
|
pathname: '/**',
|
|
},
|
|
],
|
|
},
|
|
experimental: {
|
|
appDir: true,
|
|
},
|
|
typescript: {
|
|
// !! WARN !!
|
|
// Dangerously allow production builds to successfully complete even if
|
|
// your project has type errors.
|
|
// !! WARN !!
|
|
ignoreBuildErrors: true,
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig
|