Merge branch 'feat/language' into 'test'

fix: move i18n dir

See merge request opensource/answer!164
This commit is contained in:
linkinstar 2022-11-02 08:41:46 +00:00
commit de6c61a678
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{})
})