-
Notifications
You must be signed in to change notification settings - Fork 1
/
vite.config.ts
38 lines (36 loc) · 925 Bytes
/
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
import path from "path";
import pages from "@hono/vite-cloudflare-pages";
import honox from "honox/vite";
import { defineConfig } from "vite";
import client from "honox/vite/client";
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"],
output: {
entryFileNames: "static/client.js",
chunkFileNames: "static/assets/[name]-[hash].js",
assetFileNames: "static/assets/[name].[ext]",
},
},
},
};
} else {
return {
...common,
ssr: { external: ["react", "react-dom"] },
plugins: [honox(), pages()],
};
}
});