From cb69b7f7ddd324ad1e59714105c5095937f2bf2d Mon Sep 17 00:00:00 2001 From: "Jarlem Red J. de Peralta" Date: Sat, 17 Dec 2022 13:31:42 +0800 Subject: [PATCH] chore(config): resolve path aliases integration components would be utilizing these path aliases. --- test/intg.config.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/intg.config.ts b/test/intg.config.ts index 7de2fdb..ea9d700 100644 --- a/test/intg.config.ts +++ b/test/intg.config.ts @@ -4,6 +4,12 @@ import { defineConfig } from "vitest/config" export default defineConfig({ "plugins": [vue()], + "resolve": { + "alias": { + "@": "src/components" + } + }, + "test": { "environment": "jsdom", "globals": true,