-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.js
49 lines (47 loc) · 1.29 KB
/
vite.config.js
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
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import { resolve } from "path";
// Get repository name for GitHub Pages deployment
const repoName = "awesome-scalability-talks";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
base: `/${repoName}/`,
resolve: {
alias: {
"@": resolve(__dirname, "src"),
},
},
server: {
port: 3000,
host: "0.0.0.0",
open: true,
},
build: {
outDir: "dist",
sourcemap: true,
// Support both .jsx and .tsx files
rollupOptions: {
input: {
main: resolve(__dirname, "index.html"),
},
output: {
manualChunks: undefined,
// Ensure asset filenames are predictable
entryFileNames: "assets/[name]-[hash].js",
chunkFileNames: "assets/[name]-[hash].js",
assetFileNames: (assetInfo) => {
// Keep the original file name for images and other assets
if (/\.(png|jpe?g|gif|svg|ico)$/.test(assetInfo.name)) {
return "assets/[name][extname]";
}
return "assets/[name]-[hash][extname]";
},
},
},
// Ensure assets are properly referenced
assetsInlineLimit: 4096,
// Copy files from public directory to dist
copyPublicDir: true,
},
});