Config.Tips

Astro is an all-in-one web framework for building fast, content-focused websites. Astro is a popular choice for building static websites such as blogs, marketing sites, and documentation. Use JavaScript to describe how to build your website and generate static HTML. Take advantage of "islands" to bring your favorite frontend framework into your Astro site, or bring more than one!

astro.config.mjs
import { defineConfig } from 'astro/config'

export default defineConfig({
  // your configuration options here...
})

Tips