chore: disable server side rendering (ssr) during build
for hosting at github page
This commit is contained in:
parent
9ca32bf842
commit
7943ae4ac2
1 changed files with 6 additions and 1 deletions
|
|
@ -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(),
|
||||
],
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue