๐Ÿ“ฆ cloudflare / vinext

๐Ÿ“„ vite.config.ts ยท 11 lines
1
2
3
4
5
6
7
8
9
10
11import { defineConfig } from "vite";
import vinext from "vinext";

export default defineConfig({
  plugins: [vinext()],
  ssr: {
    // Force nuqs through Vite's transform pipeline so our next/* aliases work
    noExternal: ["nuqs"],
  },
});