forked from anse-app/chatgpt-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
astro.config.mjs
76 lines (73 loc) · 1.9 KB
/
astro.config.mjs
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
import { defineConfig } from 'astro/config'
import unocss from 'unocss/astro'
import solidJs from '@astrojs/solid-js'
import node from '@astrojs/node'
import { VitePWA } from 'vite-plugin-pwa'
import vercel from '@astrojs/vercel/edge'
import netlify from '@astrojs/netlify/edge-functions'
import vercelDisableBlocks from './plugins/vercelDisableBlocks'
const envAdapter = () => {
if (process.env.OUTPUT === 'vercel') {
return vercel()
} else if (process.env.OUTPUT === 'netlify') {
return netlify()
} else {
return node({
mode: 'standalone',
})
}
}
// https://astro.build/config
export default defineConfig({
integrations: [
unocss(),
solidJs(),
],
output: 'server',
adapter: envAdapter(),
vite: {
plugins: [
process.env.OUTPUT === 'vercel' && vercelDisableBlocks(),
process.env.OUTPUT === 'netlify' && vercelDisableBlocks(),
process.env.OUTPUT !== 'netlify' && VitePWA({
registerType: 'autoUpdate',
manifest: {
name: 'ChatGPT-API Demo',
short_name: 'ChatGPT Demo',
description: 'A demo repo based on OpenAI API',
theme_color: '#212129',
background_color: '#ffffff',
icons: [
{
src: 'pwa-192.png',
sizes: '192x192',
type: 'image/png',
},
{
src: 'pwa-512.png',
sizes: '512x512',
type: 'image/png',
},
{
src: 'icon.svg',
sizes: '32x32',
type: 'image/svg',
purpose: 'any maskable',
},
],
},
workbox: {
globDirectory: 'dist',
navigateFallback: '/',
},
client: {
installPrompt: true,
periodicSyncForUpdates: 20,
},
devOptions: {
enabled: true,
},
}),
],
},
})