diff --git a/.gitignore b/.gitignore index 0505cc1..d7d810d 100644 --- a/.gitignore +++ b/.gitignore @@ -81,4 +81,8 @@ yarn-error.log* # Database (Sql Lite) API/app.db-wal -API/app.db-shm \ No newline at end of file +API/app.db-shm + +# Vite build output +GUI/dist/ +wwwroot/ \ No newline at end of file diff --git a/.vs/JudoWeb/DesignTimeBuild/.dtbcache.v2 b/.vs/JudoWeb/DesignTimeBuild/.dtbcache.v2 index 7c118f7..6669671 100644 Binary files a/.vs/JudoWeb/DesignTimeBuild/.dtbcache.v2 and b/.vs/JudoWeb/DesignTimeBuild/.dtbcache.v2 differ diff --git a/GUI/src/__tests__/App.spec.ts b/GUI/src/__tests__/App.spec.ts deleted file mode 100644 index 5b17801..0000000 --- a/GUI/src/__tests__/App.spec.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { describe, it, expect } from 'vitest' - -import { mount } from '@vue/test-utils' -import App from '../App.vue' - -describe('App', () => { - it('mounts renders properly', () => { - const wrapper = mount(App) - expect(wrapper.text()).toContain('You did it!') - }) -}) diff --git a/GUI/vite.config.ts b/GUI/vite.config.ts index 4217010..f20b58a 100644 --- a/GUI/vite.config.ts +++ b/GUI/vite.config.ts @@ -15,4 +15,7 @@ export default defineConfig({ '@': fileURLToPath(new URL('./src', import.meta.url)) }, }, + build: { + outDir: "../wwwroot" + } })