feat: favicon api always return an image

When the api cannot fetch the remote favicon, we return a placeholder image
This commit is contained in:
Sonny
2023-11-12 04:34:30 +01:00
parent 7387b4f364
commit f5c406a84c
5 changed files with 13 additions and 3 deletions

View File

@@ -23,7 +23,10 @@ const config = {
experimental: {
webpackBuildWorker: true
},
output: "standalone"
output: "standalone",
env: {
baseUrl: process.env.NEXTAUTH_URL
}
};
module.exports = config;