mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-17 19:26:23 +00:00
16 lines
435 B
TypeScript
16 lines
435 B
TypeScript
import { defineConfig } from 'vite'
|
|
import { qwikVite } from '@builder.io/qwik/optimizer'
|
|
import { qwikCity } from '@builder.io/qwik-city/vite'
|
|
import tsconfigPaths from 'vite-tsconfig-paths'
|
|
|
|
export default defineConfig(() => {
|
|
return {
|
|
plugins: [qwikCity(), qwikVite(), tsconfigPaths()],
|
|
preview: {
|
|
headers: {
|
|
'Cache-Control': 'public, max-age=600',
|
|
},
|
|
},
|
|
}
|
|
})
|