TanStackT
TanStack4mo ago
22 replies
dramatic-maroon

Running `vite build` doesn't create a .output folder anymore in RC

I've been able to migrate my project to RC and everything's running fine but when I tried building it, a .output folder wasn't created, but in the docs the output folder is still used. Any tips about how I can build and start my app?

Here's my vite config
import tailwindcss from "@tailwindcss/vite";
import { tanstackStart } from "@tanstack/react-start/plugin/vite";
import viteReact from "@vitejs/plugin-react";
import { defineConfig } from "vite";
import tsConfigPaths from "vite-tsconfig-paths";

export default defineConfig({
  server: {
    port: 3000,
  },
  plugins: [tailwindcss(), tsConfigPaths(), tanstackStart(), viteReact()],
});
Was this page helpful?