-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvite.config.js
More file actions
24 lines (23 loc) · 1.01 KB
/
vite.config.js
File metadata and controls
24 lines (23 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { resolve } from "path";
import { defineConfig } from "vite";
export default defineConfig({
build: {
rollupOptions: {
input: {
main: resolve(__dirname, "index.html"),
notfound: resolve(__dirname, "404.html"),
projects: resolve(__dirname, "./pages/projects.html"),
about: resolve(__dirname, "./pages/about.html"),
contact: resolve(__dirname, "./pages/contact.html"),
ngShift: resolve(__dirname, "./pages/projects/ng-shift.html"),
wordpress: resolve(__dirname, "./pages/projects/wordpress-blog.html"),
portfolio: resolve(__dirname, "./pages/projects/calin-codes.html"),
shifter: resolve(__dirname, "./pages/projects/shift-manager.html"),
advice: resolve(__dirname, "./pages/projects/advice-generator.html"),
resume: resolve(__dirname, "./pages/projects/resume.html"),
github: resolve(__dirname, "./pages/projects/github.html"),
firebaseConfig: resolve(__dirname, "firebaseConfig.js"),
},
},
},
});