2023-10-09 18:46:41 +00:00
|
|
|
import { defineConfig } from 'astro/config'
|
|
|
|
|
|
|
|
import react from '@astrojs/react'
|
|
|
|
import tailwind from '@astrojs/tailwind'
|
2023-10-11 13:46:46 +00:00
|
|
|
import optimizer from 'vite-plugin-optimizer'
|
2023-10-09 18:46:41 +00:00
|
|
|
|
|
|
|
// https://astro.build/config
|
|
|
|
export default defineConfig({
|
2023-10-11 13:46:46 +00:00
|
|
|
integrations: [react(), tailwind({ applyBaseStyles: false, })],
|
|
|
|
vite: {
|
2023-10-12 10:33:33 +00:00
|
|
|
build:{
|
|
|
|
minify: false
|
|
|
|
},
|
2023-10-11 13:46:46 +00:00
|
|
|
plugins: [
|
|
|
|
optimizer({
|
|
|
|
'node-fetch':
|
|
|
|
'const e = undefined; export default e;export {e as Response, e as FormData, e as Blob};',
|
|
|
|
}),
|
|
|
|
]
|
|
|
|
}
|
2023-10-09 18:46:41 +00:00
|
|
|
})
|