bucong 提交

This commit is contained in:
ZhenYi 2026-05-12 18:06:20 +08:00
parent d19a3ca557
commit e6ba5433e2
3 changed files with 3 additions and 2 deletions

1
Cargo.lock generated
View File

@ -1149,6 +1149,7 @@ dependencies = [
"config",
"image",
"serde",
"tracing",
]
[[package]]

View File

@ -19,5 +19,6 @@ config = { workspace = true }
anyhow = { workspace = true }
image = { workspace = true }
serde = { workspace = true, features = ["derive"] }
tracing = { workspace = true }
[lints]
workspace = true

View File

@ -2,7 +2,6 @@ import path from "path"
import tailwindcss from "@tailwindcss/vite"
import react from "@vitejs/plugin-react"
import {defineConfig, type Plugin} from "vite"
import {analyzer} from 'vite-bundle-analyzer'
function tailwindEscapeFix(): Plugin {
return {
@ -17,7 +16,7 @@ function tailwindEscapeFix(): Plugin {
}
export default defineConfig({
plugins: [tailwindcss(), tailwindEscapeFix(), react(), analyzer()],
plugins: [tailwindcss(), tailwindEscapeFix(), react()],
optimizeDeps: {
entries: ["src/**/*.{ts,tsx}"],
},