achat-maison-albi-fr/astro.config.mjs
Emil Gulamov 1730ce1bd4 Update website URL and optimize robots.txt settings
The website URL references in the project have been updated from 'https://screw-fast.vercel.app' to 'https://screwfast.uk'. In addition, the 'robots.txt' settings have been optimized to specify different crawl delays for different bots, providing a more granular control over how search engines interact with our website. Also, minor adjustments have been made to the PasswordInput component to streamline the 'aria-describedby' attribute.
2024-02-19 10:05:50 +04:00

14 lines
No EOL
448 B
JavaScript

import { defineConfig } from 'astro/config';
import tailwind from "@astrojs/tailwind";
import vercelStatic from '@astrojs/vercel/static';
import sitemap from "@astrojs/sitemap";
import compressor from "astro-compressor";
// https://astro.build/config
export default defineConfig({
site: 'https://screwfast.uk',
integrations: [tailwind(), sitemap(), compressor({ gzip: false, brotli: true })],
output: 'static',
adapter: vercelStatic()
});