-
Notifications
You must be signed in to change notification settings - Fork 38
/
vite.config.ts
45 lines (44 loc) · 1.24 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
import { defineConfig } from "vite"
import react from "@vitejs/plugin-react"
import cssInject from "vite-plugin-css-injected-by-js"
import { resolve } from "node:path"
import fs from "node:fs/promises"
export default defineConfig({
plugins: [
react(),
cssInject(),
{
name: 'index.js',
apply: 'build',
async writeBundle() {
const manifest = JSON.parse(await fs.readFile("dist/.vite/manifest.json", "utf-8"))
await fs.writeFile("dist/index.js", `export {default} from "./${manifest["src/App.tsx"].file}"`)
}
}
],
resolve:
process.env.NODE_ENV === "production"
? {
alias: {
"@huggingface/transformers":
"https://cdn.jsdelivr.net/npm/@huggingface/[email protected]",
},
}
: {},
build: {
manifest: true,
target: "esnext",
rollupOptions:
process.env.TARGET === "bannerify"
? {
external: ["react/jsx-runtime", "react", "react-dom"],
input: resolve(__dirname, "src/App.tsx"),
preserveEntrySignatures: "exports-only",
output: {
entryFileNames: "index.[hash].js",
format: "esm",
},
}
: {},
},
})