• shaw's avatar
    fix(frontend): 启用 vue-i18n JIT 编译修复消息插值不工作问题 · 090c9e66
    shaw authored
    问题:使用 vue-i18n 运行时版本后,带变量的翻译(如 '{days} 天')
    无法正确显示,直接显示原始字符串。
    
    原因:运行时版本不含消息编译器,无法在运行时编译消息插值。
    
    解决:启用 JIT 编译(__INTLIFY_JIT_COMPILATION__: true)
    - JIT 编译器将消息编译为 AST 对象而非 JavaScript 代码
    - 通过解释执行 AST 实现插值,无需 eval 或 new Function
    - 符合 CSP script-src 'self' 策略,不降低安全性
    
    同时将 vite.config.js.timestamp-* 临时文件添加到 .gitignore
    090c9e66
vite.config.ts 1.01 KB