summaryrefslogtreecommitdiff
path: root/examples/blog/astro.config.mjs
blob: 2f34788e54a3881c769d9b92ccd474684cd65193 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
export default {
  projectRoot: '.',
  public: './public',
  dist: './dist',
  buildOptions:{
    sitemap: true,
    site: 'https://muppet-blog.github.io/',
  },
  astroRoot: './src',
};