diff options
author | 2023-07-26 15:42:11 +0100 | |
---|---|---|
committer | 2023-08-08 11:01:33 +0100 | |
commit | 9a01cc64c22be754c0234ec3fe0e3c0b9659c883 (patch) | |
tree | 62953ed3216a9c8ce57bdca03b1a04e6b12f5f59 /examples/blog | |
parent | 96beb883ad87f8bbf5b2f57e14a743763d2a6f58 (diff) | |
download | astro-9a01cc64c22be754c0234ec3fe0e3c0b9659c883.tar.gz astro-9a01cc64c22be754c0234ec3fe0e3c0b9659c883.tar.zst astro-9a01cc64c22be754c0234ec3fe0e3c0b9659c883.zip |
Remove support for Node 16 (#7780) (#7820)
Diffstat (limited to 'examples/blog')
-rw-r--r-- | examples/blog/src/pages/blog/[...slug].astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/blog/src/pages/blog/[...slug].astro b/examples/blog/src/pages/blog/[...slug].astro index 12436c2b2..07dbce26b 100644 --- a/examples/blog/src/pages/blog/[...slug].astro +++ b/examples/blog/src/pages/blog/[...slug].astro @@ -1,5 +1,5 @@ --- -import { CollectionEntry, getCollection } from 'astro:content'; +import { type CollectionEntry, getCollection } from 'astro:content'; import BlogPost from '../../layouts/BlogPost.astro'; export async function getStaticPaths() { |