feat: enhance admin UI with responsive styles and new components

- Updated styles in src/styles.css for better responsiveness and layout adjustments.
- Added new CSS classes for edit drawer and item rail components.
- Introduced animations for drawer transitions.
- Created new types in src/types/admin.ts for better type safety in admin features.
- Modified vite.config.ts to change server port and enable strict port settings for development.
This commit is contained in:
duanshuwen
2026-07-01 16:55:23 +08:00
parent b9a57fe03c
commit 462498660e
20 changed files with 2840 additions and 1554 deletions

View File

@@ -11,7 +11,12 @@ export default defineConfig({
},
},
server: {
port: 5601,
host: "0.0.0.0",
port: 5602,
strictPort: true,
hmr: {
clientPort: 5602,
},
proxy: {
"/api": {
target: "http://localhost:4000",
@@ -19,5 +24,10 @@ export default defineConfig({
},
},
},
preview: {
host: "0.0.0.0",
port: 5603,
strictPort: true,
},
});