-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.js
49 lines (46 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import { VitePWA } from 'vite-plugin-pwa'
import vue from '@vitejs/plugin-vue'
import svgLoader from 'vite-svg-loader'
// https://vitejs.dev/config/
export default defineConfig({
base: '/app/',
plugins: [
vue(),
svgLoader({
svgo: false
}),
VitePWA({
registerType: 'autoUpdate',
devOptions: {
enabled: true
},
// Used to build the manifest.json file for PWAs:
manifest: {
name: 'Vacansee',
short_name: 'Vacansee',
description: 'Predicting campus occupancy and room availability @ RPI',
background_color: '#ffffff',
theme_color: '#b6c1cd',
display_override: ['window-controls-overlay'],
display: 'standalone',
icons: [
{
src: 'icon.png',
sizes: '144x144',
type: 'image/png'
},
]
}
})
],
build: {
sourcemap: true,
},
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
})