-
Notifications
You must be signed in to change notification settings - Fork 1
/
vite.config.js
52 lines (51 loc) · 1.25 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
50
51
52
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import path from 'path'
import ViewportHeightCorrection from 'postcss-viewport-height-correction'
import { VitePWA } from 'vite-plugin-pwa'
// https://vitejs.dev/config/
export default defineConfig(({ mode }) => ({
base: mode === 'production' ? '/radio-dakwah/' : '/',
plugins: [
vue(),
VitePWA({
registerType: 'autoUpdate',
includeAssets: ['radio_black.svg'],
manifest: {
name: 'Radio Dakwah',
short_name: 'Radio Dakwah',
description: 'Menjaga Ketenteraman Hati',
theme_color: '#ffffff',
},
workbox: {
globPatterns: ['**/*.{js,css,html,ico,jpg,png,svg}']
},
pwaAssets: {
config: true,
overrideManifestIcons: true
},
devOptions: {
enabled: true,
suppressWarnings: true,
type: 'module'
}
})
],
css: {
postcss: {
plugins: [ViewportHeightCorrection({ variable: 'vh' })]
}
},
server: {
port: 3333,
https: {
key: '/Users/nur/Devs/WebProjects/localhost-key.pem',
cert: '/Users/nur/Devs/WebProjects/localhost.pem',
}
},
resolve: {
alias: {
'@': path.resolve(__dirname, './src')
}
}
}))