feat(api): add backend api with express and sqlite

This commit is contained in:
Tuan-Dat Tran
2026-02-23 13:47:44 +01:00
parent 7f06ee7f53
commit 00af8862d3
4 changed files with 70 additions and 0 deletions

8
backend/vitest.config.js Normal file
View File

@@ -0,0 +1,8 @@
import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
environment: 'node',
globals: true,
},
})