vite项目中导入 vue-i18n 能正常使用,但是控制台有黄色报警,强迫症必须干掉黄色的这一坨!

报错原文:

vue-i18n.esm-bundler.js:39 You are running the esm-bundler build of vue-i18n. It is recommended to configure your bundler to explicitly replace feature flag globals with boolean literals to get proper tree-shaking in the final bundle. 

机器人翻译:

你正在运行vue-i18n的esm-bundler构建。建议配置您的bundle,显式地用布尔值字面量替换特性标志全局变量,以便在最终的bundle中获得正确的摇树。

解决方案:

vite.config.ts 中 alias 配置一下:

'vue-i18n': 'vue-i18n/dist/vue-i18n.cjs.js',

参考:解决 使用 vue-i18n 入口文件配置 控制台报警问题 - SegmentFault 思否

Logo

前往低代码交流专区

更多推荐