chore: disable server side rendering (ssr) during build

for hosting at github page
This commit is contained in:
afiqzudinhadi 2025-06-07 01:46:28 +08:00
parent 9ca32bf842
commit 7943ae4ac2

View file

@ -3,5 +3,10 @@ import { defineConfig } from "vite";
import tsConfigPaths from "vite-tsconfig-paths";
export default defineConfig({
plugins: [remix(), tsConfigPaths()],
plugins: [
remix({
ssr: false,
}),
tsConfigPaths(),
],
});