Files
hg-landing/vite.config.ts
iammm0 b363bfeed4 Update landing page accent palette to cyan-violet gradients.
Replace the orange brand colors with sky blue and purple tones across theme tokens, hero chips, and application cards.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-26 09:20:45 +08:00

17 lines
299 B
TypeScript

import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import path from "path";
export default defineConfig({
plugins: [react()],
server: {
port: 5173,
strictPort: true,
},
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
});