我正在使用样板Next.js启动器。在中index.js
,快速应用程序的实例定义为expressApp
。我只是尝试使用我的网站图标serve-favicon
,而没有运气:
expressApp.use(favicon(path.join(__dirname, "static", "brand", "favicon.ico")));
检查了正在解析的路径,它是正确的。next.js的实现express
有何不同?
我正在使用样板Next.js启动器。在中index.js
,快速应用程序的实例定义为expressApp
。我只是尝试使用我的网站图标serve-favicon
,而没有运气:
expressApp.use(favicon(path.join(__dirname, "static", "brand", "favicon.ico")));
检查了正在解析的路径,它是正确的。next.js的实现express
有何不同?
从
serve-favicon
存储库:因此,此程序包无法在其他路径中提供favicon,因为这将需要添加标记。要解决此问题,
link
请在pages/_document.js
模板内添加标签:在将
serve-favicon
代码保存在index.js
文件中的同时: