tonitch/feat/adding-the-frontend (#23)
Some checks failed
continuous-integration/drone/push Build was killed

This is the base of the frontend with a CI to deploy it to clyde.herisson.ovh with each push to master

Co-authored-by: Debucquoy <debucqquoy.anthony@gmail.com>
Reviewed-on: #23
This commit was merged in pull request #23.
This commit is contained in:
2024-02-14 11:14:24 +01:00
parent 04143f162b
commit e68118945c
23 changed files with 602 additions and 4 deletions

14
frontend/vitest.config.js Normal file
View File

@@ -0,0 +1,14 @@
import { fileURLToPath } from 'node:url'
import { mergeConfig, defineConfig, configDefaults } from 'vitest/config'
import viteConfig from './vite.config'
export default mergeConfig(
viteConfig,
defineConfig({
test: {
environment: 'jsdom',
exclude: [...configDefaults.exclude, 'e2e/*'],
root: fileURLToPath(new URL('./', import.meta.url))
}
})
)