soulsam480/ecom-cms

View on GitHub
vue.config.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = {
  // If you are deploying to github pages repo without a custom
  // domain name set publicPath: '/repo-name/'

  // If deploying to custom domain on github pages set publicPath: '/'
  publicPath: "/",
  devServer: {
    port: 8082,
  },
  productionSourceMap: false,
  css: {
    loaderOptions: {
      sass: {
        sassOptions: {},
      },
    },
  },
};