英文:
How to serve a next js application with gorilla mux in Golang instead of the native go http package?
问题
我有一个Go后端,在我的控制器中有一个routes.go文件,使用gorilla mux路由器。我该如何使用gorilla mux来提供一个静态的Next.js应用程序?
英文:
I have a go backend and inside my controllers i have a routes.go that uses gorilla mux router. How can i serve a static next js application using gorilla mux?
答案1
得分: 1
s.Router.PathPrefix("/").Handler(http.FileServer(http.Dir("nextjs/dist"))))
这是我用来提供静态 Next.js 文件的方法。
英文:
s.Router.PathPrefix("/").Handler(http.FileServer(http.Dir("nextjs/dist")))
That's how i managed to serve the static next.js
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论