0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00

[ci] format

This commit is contained in:
natemoo-re 2022-03-10 23:36:11 +00:00 committed by GitHub Actions
parent fb7b09253f
commit 3a6ef130dd

View file

@ -10,13 +10,13 @@
```ts
// astro.config.ts
import type { AstroUserConfig } from 'astro'
import type { AstroUserConfig } from 'astro';
const config: AstroUserConfig = {
sitemap: true,
sitemapFilter: (page: string) => !page.includes('secret-page')
}
export default config
sitemapFilter: (page: string) => !page.includes('secret-page'),
};
export default config;
```
* [#2750](https://github.com/withastro/astro/pull/2750) [`79fc3204`](https://github.com/withastro/astro/commit/79fc320480b2a638ef707079a624519bd54f1550) Thanks [@FredKSchott](https://github.com/FredKSchott)! - update esbuild@0.14.25