fix: move i18n dir

This commit is contained in:
LinkinStar 2022-11-02 16:35:41 +08:00
parent ca09c60ee1
commit 412edc1ba4
1 changed files with 1 additions and 1 deletions

View File

@ -41,6 +41,7 @@ func (r *_resource) Open(name string) (fs.File, error) {
// Register a new static resource which generated by ui directory
func (a *UIRouter) Register(r *gin.Engine) {
staticPath := os.Getenv("ANSWER_STATIC_PATH")
r.StaticFS("/i18n/", http.FS(i18n.I18n))
// if ANSWER_STATIC_PATH is set and not empty, ignore embed resource
if staticPath != "" {
@ -53,7 +54,6 @@ func (a *UIRouter) Register(r *gin.Engine) {
r.LoadHTMLGlob(staticPath + "/*.html")
r.Static("/static", staticPath+"/static")
r.StaticFS("/i18n/", http.FS(i18n.I18n))
r.NoRoute(func(c *gin.Context) {
c.HTML(http.StatusOK, "index.html", gin.H{})
})