Explorar o código

Merge branch 'develop' of github.com:flipped-aurora/gin-vue-admin into gva-vue3-2.4.5

qimiao %!s(int64=3) %!d(string=hai) anos
pai
achega
28445308a5
Modificáronse 1 ficheiros con 10 adicións e 0 borrados
  1. 10 0
      server/initialize/router.go

+ 10 - 0
server/initialize/router.go

@@ -16,6 +16,16 @@ import (
 
 func Routers() *gin.Engine {
 	var Router = gin.Default()
+
+	// 想代理前端网页,修改 web/.env.production 下的
+	// VUE_APP_BASE_API = /
+	// VUE_APP_BASE_PATH = http://localhost
+	// 然后执行打包命令 npm run build。在打开下面4行注释
+	//Router.LoadHTMLGlob("./dist/*.html") // npm打包成dist的路径
+	//Router.Static("/favicon.ico", "./dist/favicon.ico")
+	//Router.Static("/static", "./dist/static")   // dist里面的静态资源
+	//Router.StaticFile("/", "./dist/index.html") // 前端网页入口页面
+
 	Router.StaticFS(global.GVA_CONFIG.Local.Path, http.Dir(global.GVA_CONFIG.Local.Path)) // 为用户头像和文件提供静态地址
 	// Router.Use(middleware.LoadTls())  // 打开就能玩https了
 	global.GVA_LOG.Info("use middleware logger")