foldbank-mock/web/next.config.js
Ameya Shenoy 981de5b604
feat: accounts api done
Signed-off-by: Ameya Shenoy <shenoy.ameya@gmail.com>
2023-03-22 17:51:22 +05:30

34 lines
676 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
icons: {
icon: '/favicon.ico',
},
images: {
remotePatterns: [
{
protocol: 'http',
hostname: 'localhost:8000',
port: '',
pathname: '/**',
},
{
protocol: 'https',
hostname: '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