我的 Go 项目中有一个 dist 文件夹。包含角度构建文件。import ( "github.com/gin-contrib/cors" "github.com/gin-gonic/contrib/static" "github.com/gin-gonic/gin")func SetRoutes() *gin.Engine { router := gin.Default() router.Use(cors.Default()) router.Use(static.Serve("/", static.LocalFile("./client/dist", true))) router.Run(":8080")}使用上面的代码我可以提供 dist 文件夹文件。但如果我刷新浏览器,它将无法获取这些文件。显示错误“404 页面未找到”。
- 2 回答
- 0 关注
- 97 浏览
添加回答
举报
0/150
提交
取消