const path = require("path");
module.exports = {
  webpack: {
    alias: {
      "@": path.resolve(__dirname, "src/"),
      "@COM": "@/components",
      "@ASSET": "@/assets",
      "@UTIL": "@/utils",
      "@STORE": "@/stores",
      "@CON": "@/constants",
    },
  },
};