hi my app is showing raw index.js file
here is the link https://demo-xi-hazel-24.vercel.app/
here is the vite.config.ts
import { reactRouter } from "@react-router/dev/vite";
import autoprefixer from "autoprefixer";
import tailwindcss from "tailwindcss";
import { defineConfig } from "vite";
import tsconfigPaths from "vite-tsconfig-paths";
import vercel from "vite-plugin-vercel";
export default defineConfig({
css: {
postcss: {
plugins: [tailwindcss, autoprefixer],
},
},
plugins: [reactRouter(), tsconfigPaths(), vercel()],
resolve: {
extensions: [".js", ".ts", ".jsx", ".tsx", ".json"],
},
});