// vue.config.js const webpack = require('webpack'); module.exports = { configureWebpack: { plugins: [ new webpack.DefinePlugin({ '__VUE_I18N_FULL_INSTALL__': JSON.stringify(true), '__VUE_I18N_LEGACY_API__': JSON.stringify(false), '__INTLIFY_PROD_DEVTOOLS__': JSON.stringify(false) }) ] }, // 如果需要自定义其他 webpack 配置,可以在这里添加 chainWebpack: (config) => { // 例如,你可以在这里添加其他配置 } }