-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvite.config.js
More file actions
41 lines (31 loc) · 997 Bytes
/
Copy pathvite.config.js
File metadata and controls
41 lines (31 loc) · 997 Bytes
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
import { qrcode } from 'vite-plugin-qrcode';
import Sitemap from 'vite-plugin-sitemap'
import DynamicPublicDirectory from "vite-multiple-assets";
export default {
root: 'src/',
base: './',
server:
{
host: true,
},
assetsInclude: ['**/*.pcd', '**/*.pdf', '**/*.m4a', '**/*.xd'],
build:
{
outDir: '../dist',
emptyOutDir: true,
sourcemap: true,
rollupOptions: {
input: {
main: './src/index.html',
aboutme: './src/html/aboutme.html',
projects: './src/html/projects.html',
contact: './src/html/contact.html',
mediaproducts: './src/html/mediaproducts.html',
designproducts: './src/html/design.html',
standard: './src/html/standard.html',
personal: './src/html/personal.html',
development: './src/html/development.html',
}
}
},
}