vue.config.js 226 B

12345678
  1. const { defineConfig } = require('@vue/cli-service')
  2. module.exports = defineConfig({
  3. publicPath: process.env.NODE_ENV === "production" ? "/seller/" : "/",
  4. transpileDependencies: true,
  5. devServer: {
  6. port: 3060
  7. }
  8. });