WIP: #7220 - Component Unit Cypress Test #296

Draft
jsegarra wants to merge 33 commits from 7220_cypressUnitTest into dev
2 changed files with 21 additions and 0 deletions
Showing only changes of commit 4d9fcbe23f - Show all commits

View File

@ -20,4 +20,11 @@ module.exports = defineConfig({
// implement node event listeners here
},
},
component: {
devServer: {
framework: 'vue',
bundler: 'vite',
},
},
});

14
vite.config.js Normal file
View File

@ -0,0 +1,14 @@
import { fileURLToPath, URL } from 'url';
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
},
},
});