This repository has been archived by the owner on Mar 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
128 lines (127 loc) · 3.41 KB
/
vite.config.ts
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
import path from 'path'
import { defineConfig } from 'vite'
import WindiCSS from 'vite-plugin-windicss'
import { VitePWA } from 'vite-plugin-pwa'
import PurgeIcons from 'vite-plugin-purge-icons'
// @ts-ignore
import yaml from '@rollup/plugin-yaml'
// @ts-ignore
import MarkdownItPrism from 'markdown-it-prism'
import MarkdownItAnchor from 'markdown-it-anchor'
import MarkdownIt from 'markdown-it'
import PineconePages from 'vite-plugin-pinecone-pages'
// ts-ignore
export default defineConfig({
resolve: {
alias: {
'~/': `${path.resolve(__dirname, 'src')}/`,
},
},
plugins: [
// Enable markdown support, remove MarkdownIt option to disable it.
// if you do, make sure to remove the MarkdownIt dependencies as well.
PineconePages({
MarkdownIt: MarkdownIt({
html: true,
linkify: true,
typographer: true,
}).use(MarkdownItPrism, MarkdownItAnchor),
}),
yaml(),
// use rapide's custom view reloading with Markdown views
// @ts-ignore
WindiCSS({
scan: {
dirs: ['.', './src/pages/', './src/layouts'], // all files in the cwd
fileExtensions: ['html', 'js', 'ts', 'css', 'md'], // also enabled scanning for js/ts
},
}),
PurgeIcons({
/* PurgeIcons Options */
content: [
'**/*.html',
'**/*.js',
'**/*.ts',
'**/*.md',
],
}),
VitePWA({
registerType: 'autoUpdate',
manifest: {
name: 'Rapide App',
short_name: 'Rapide App',
description: 'This is a PWA Minimum Template',
icons: [
{
src: '/images/icons/icon-48x48.png',
sizes: '48x48',
type: 'image/png',
},
{
src: '/images/icons/icon-72x72.png',
sizes: '72x72',
type: 'image/png',
},
{
src: '/images/icons/icon-96x96.png',
sizes: '96x96',
type: 'image/png',
},
{
src: '/images/icons/icon-128x128.png',
sizes: '128x128',
type: 'image/png',
},
{
src: '/images/icons/icon-144x144.png',
sizes: '144x144',
type: 'image/png',
},
{
src: '/images/icons/icon-152x152.png',
sizes: '152x152',
type: 'image/png',
},
{
src: '/images/icons/icon-168x168.png',
sizes: '168x168',
type: 'image/png',
},
{
src: '/images/icons/icon-192x192.png',
sizes: '192x192',
type: 'image/png',
},
{
src: '/images/icons/icon-256x256.png',
sizes: '256x256',
type: 'image/png',
},
{
src: '/images/icons/android-chrome-512x512.png',
sizes: '512x512',
type: 'image/png',
},
{
src: '/images/icons/maskable_icon.png',
sizes: '196x196',
type: 'image/png',
purpose: 'any maskable',
},
],
lang: 'en',
// dir: 'ltr',
scope: '/',
start_url: '/',
display: 'standalone',
orientation: 'any',
background_color: '#ffffff',
theme_color: '#ffffff',
// @ts-ignore
prefer_related_applications: false,
},
workbox: {},
}),
],
publicDir: 'public/',
})