2b76ee8d75
* feat: add astro/config entrypoint * chore: update examples to use `defineConfig` util * chore: prettier fix * chore: add changeset
10 lines
206 B
JavaScript
10 lines
206 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import { VitePWA } from 'vite-plugin-pwa';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
renderers: [],
|
|
vite: {
|
|
plugins: [VitePWA()],
|
|
},
|
|
});
|