vue.config.js 244 B

1234567891011
  1. const { defineConfig } = require("@vue/cli-service");
  2. const isProduction = process.env.NODE_ENV === "production";
  3. module.exports = defineConfig({
  4. configureWebpack() {
  5. return {
  6. externals: isProduction ? ["element-plus"] : []
  7. };
  8. }
  9. });