Jpom/web-vue/i18n_tools.config.js
2024-06-06 15:51:03 +08:00

11 lines
999 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

module.exports = {
entry: ['src/pages', 'src/components'], // 提取、还原、遗漏扫描入口文件夹,可以配置多个,默认是 src
outDir: 'src/i18n/locales', // i18n 输出文件夹 默认是 src/locales
outShow: 2, //输出文件展示结构 1 扁平化结构 2树级结构 默认扁平化
exclude: ['src/i18n'], // 不提取的文件夹, 默认是 ['src/locales']
extensions: ['.vue', '.js', '.ts'], // 提取的文件后缀名,默认是 ['.js', '.vue', '.ts']
filename: 'zh_cn', // 输出的文件名,默认为 zh_cn
extname: 'json', // 输出的文件后缀名默认为 js ,支持json和jsjs格式为 module.exports = {} 或 export default {}
langList: ['en'] // 翻译目标语言列表,默认是 ['en'] 具体语种请自行查看。注意使用不同的翻译接口需要更换对应的语言编码腾讯翻译、火山翻译、谷歌翻译语言编码大致相同百度要特别注意与上述3种翻译有不同的语言编码
}