2023-02-26 15:34:45 +00:00
|
|
|
/** @type {import('next').NextConfig} */
|
|
|
|
|
const nextConfig = {
|
2023-03-22 12:21:22 +00:00
|
|
|
icons: {
|
|
|
|
|
icon: '/favicon.ico',
|
|
|
|
|
},
|
|
|
|
|
images: {
|
|
|
|
|
remotePatterns: [
|
|
|
|
|
{
|
|
|
|
|
protocol: 'http',
|
|
|
|
|
hostname: 'localhost:8000',
|
|
|
|
|
port: '',
|
|
|
|
|
pathname: '/**',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
protocol: 'https',
|
2023-03-23 11:58:14 +00:00
|
|
|
hostname: 'api.foldbank.codingcoffee.me',
|
2023-03-22 12:21:22 +00:00
|
|
|
port: '',
|
|
|
|
|
pathname: '/**',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
2023-02-26 15:34:45 +00:00
|
|
|
experimental: {
|
|
|
|
|
appDir: true,
|
|
|
|
|
},
|
2023-03-22 12:21:22 +00:00
|
|
|
typescript: {
|
|
|
|
|
// !! WARN !!
|
|
|
|
|
// Dangerously allow production builds to successfully complete even if
|
|
|
|
|
// your project has type errors.
|
|
|
|
|
// !! WARN !!
|
|
|
|
|
ignoreBuildErrors: true,
|
|
|
|
|
},
|
2023-02-26 15:34:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
module.exports = nextConfig
|