-
Notifications
You must be signed in to change notification settings - Fork 2
/
vite.config.ts
58 lines (56 loc) · 1.28 KB
/
vite.config.ts
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import pages from "@hono/vite-cloudflare-pages";
import adapter from "@hono/vite-dev-server/cloudflare";
import honox from "honox/vite";
import client from "honox/vite/client";
import path from "path";
import { defineConfig } from "vite";
export default defineConfig(({ mode }) => {
const common = {
resolve: {
alias: {
"@": path.resolve(__dirname, "./app"),
},
},
};
if (mode === "client") {
return {
...common,
plugins: [client({ jsxImportSource: "react" })],
build: {
rollupOptions: {
input: [
"./app/client.ts",
"/app/tailwind.css",
"/app/favicon.ico",
"/app/og-image.png",
],
output: {
entryFileNames: "static/client.js",
chunkFileNames: "static/assets/[name]-[hash].js",
assetFileNames: "static/assets/[name].[ext]",
},
},
},
};
} else {
return {
...common,
ssr: {
external: [
"react",
"react-dom",
"openai",
"ai",
"@upstash/ratelimit",
"@upstash/redis/cloudflare",
],
},
plugins: [
honox({
devServer: { adapter },
}),
pages(),
],
};
}
});