如何在next.js中导出build文件夹中的html文件?我有出口,但它给了我。js扩展名文件,我需要。html文件
bejyjqdl1#
Next.js默认支持静态导出。在next.config.js中将output称为export。然后运行next build命令。
next.config.js
output
export
next build
https://nextjs.org/docs/pages/building-your-application/deploying/static-exports
1条答案
按热度按时间bejyjqdl1#
Next.js默认支持静态导出。
在
next.config.js
中将output
称为export
。然后运行next build
命令。参考
https://nextjs.org/docs/pages/building-your-application/deploying/static-exports