-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvite.config.ts
More file actions
25 lines (24 loc) · 577 Bytes
/
vite.config.ts
File metadata and controls
25 lines (24 loc) · 577 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { defineConfig } from "vite";
import { nitro } from "nitro/vite";
import { graphql } from 'nitro-graphql/vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'
export default defineConfig({
plugins: [
tailwindcss(),
nitro(),
graphql({
framework: 'graphql-yoga',
scaffold: false,
paths: {
serverGraphql: 'server/graphql',
clientGraphql: 'src/graphql',
},
}),
react(),
],
nitro: {
preset: process.env.NITRO_PRESET || "node-server",
serverDir: "server"
},
});