fix(education): ship 0.2.1 drag and Forgejo truth state

This commit is contained in:
冰朔 2026-08-08 09:54:45 +08:00
commit 28f68fa9ac
15 changed files with 171 additions and 17 deletions

View file

@ -1,4 +1,11 @@
import { defineConfig } from 'vite'
import { defineConfig } from 'vitest/config'
import react from '@vitejs/plugin-react'
export default defineConfig({ plugins: [react()], clearScreen: false, server: { strictPort: true } })
export default defineConfig({
plugins: [react()],
clearScreen: false,
server: { strictPort: true },
test: {
exclude: ['**/node_modules/**', '**/dist/**', '**/._*'],
},
})