added required plugins
This commit is contained in:
parent
7f0ca203df
commit
5a8487c909
4 changed files with 540 additions and 7 deletions
|
|
@ -1,5 +1,13 @@
|
|||
// @ts-check
|
||||
import { defineConfig } from 'astro/config';
|
||||
import { defineConfig } from "astro/config";
|
||||
import solidJs from "@astrojs/solid-js";
|
||||
import compressor from "astro-compressor";
|
||||
import robotsTxt from "astro-robots-txt";
|
||||
|
||||
// https://astro.build/config
|
||||
export default defineConfig({});
|
||||
export default defineConfig({
|
||||
integrations: [
|
||||
solidJs(),
|
||||
compressor({ gzip: false, brotli: true }),
|
||||
robotsTxt(),
|
||||
],
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue