-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathvite.config.ts
87 lines (79 loc) · 1.92 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import { defineConfig, type Plugin } from "vite"
import react from "@vitejs/plugin-react"
import { resolve } from "node:path"
import winterspecBundle from "@tscircuit/file-server/dist/bundle"
import { getNodeHandler } from "winterspec/adapters/node"
import { visualizer } from "rollup-plugin-visualizer"
const fakeHandler = getNodeHandler(winterspecBundle as any, {})
function apiServerPlugin(): Plugin {
return {
name: "api-server",
configureServer(server) {
server.middlewares.use(async (req, res, next) => {
if (req.url?.startsWith("/api/")) {
req.url = req.url.replace("/api/", "/")
fakeHandler(req, res)
} else {
next()
}
})
},
}
}
const plugins: any[] = [react()]
if (!process.env.VERCEL && !process.env.STANDALONE) {
plugins.push(apiServerPlugin())
}
let build: any = undefined
if (process.env.STANDALONE) {
// plugins.push(
// visualizer({
// filename: "stats.html",
// open: true, // Will open the stats.html file after build
// gzipSize: true,
// brotliSize: true,
// }),
// )
build = {
lib: {
entry: resolve(__dirname, "src/main.tsx"),
name: "standalone",
fileName: (format) => `standalone.min.js`,
formats: ["umd"],
},
minify: true,
// reportCompressedSize: true,
}
if (process.env.STANDALONE === "preview") {
build = {
lib: {
entry: resolve(
__dirname,
"lib/components/CircuitJsonPreviewStandalone/standalone-preview.tsx",
),
name: "standalone-preview",
fileName: (format) => `standalone-preview.min.js`,
formats: ["umd"],
},
minify: true,
}
}
}
export default defineConfig({
plugins,
resolve: {
alias: {
lib: resolve(__dirname, "./lib"),
},
},
define: {
global: {
process: {
env: {},
},
},
},
root: ".",
publicDir: "public",
build,
})