mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-19 03:59:17 +00:00
20 lines
520 B
TypeScript
20 lines
520 B
TypeScript
import { staticAdaptor } from '@builder.io/qwik-city/adaptors/static/vite'
|
|
import { extendConfig } from '@builder.io/qwik-city/vite'
|
|
import baseConfig from '../../vite.config'
|
|
|
|
export default extendConfig(baseConfig, () => {
|
|
return {
|
|
build: {
|
|
ssr: true,
|
|
rollupOptions: {
|
|
input: ['@qwik-city-plan'],
|
|
},
|
|
},
|
|
plugins: [
|
|
staticAdaptor({
|
|
origin: 'https://bot-whatsapp.netlify.app',
|
|
}),
|
|
],
|
|
}
|
|
})
|