-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.js
34 lines (32 loc) · 1.13 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
const { defineConfig } = require('vite');
module.exports = defineConfig({
build: {
rollupOptions: {
input: {
home: './index.html',
attributions: './wiki/attributions.html',
collaborations: './wiki/collaborations.html',
communication: './wiki/communication.html',
contribution: './wiki/contribution.html',
description: './wiki/description.html',
design: './wiki/design.html',
education: './wiki/education.html',
engineering: './wiki/engineering.html',
experiments: './wiki/experiments.html',
hardware: './wiki/hardware.html',
humanPractices: './wiki/human-practices.html',
implementation: './wiki/implementation.html',
model: './wiki/model.html',
notebook: './wiki/notebook.html',
partnership: './wiki/partnership.html',
parts: './wiki/parts.html',
proofOfConcept: './wiki/proof-of-concept.html',
results: './wiki/results.html',
safety: './wiki/safety.html',
team: './wiki/team.html',
// ...
// List all files you want in your build
},
},
},
});