feat(ai-character): 관리자 인증 셸 구현

This commit is contained in:
Yu Sung
2026-07-27 15:04:03 +09:00
parent ba43dd829e
commit 5356bd1e6a
82 changed files with 6017 additions and 18 deletions

View File

@@ -1,8 +1,9 @@
import react from "@vitejs/plugin-react";
import { defineConfig } from "vitest/config";
import tailwindcss from "@tailwindcss/vite";
import { configDefaults, defineConfig } from "vitest/config";
export default defineConfig({
plugins: [react()],
plugins: [react(), tailwindcss()],
server: {
host: "127.0.0.1",
port: 8888,
@@ -17,5 +18,6 @@ export default defineConfig({
environment: "jsdom",
setupFiles: ["./src/shared/test/setup.ts"],
globals: true,
exclude: [...configDefaults.exclude, "tests/e2e/**"],
},
});