Remove support for Node 16 (#7780) (#7820)

This commit is contained in:
Emanuele Stoppa 2023-07-26 15:42:11 +01:00
parent 96beb883ad
commit 9a01cc64c2
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
--- ---
import { CollectionEntry, getCollection } from 'astro:content'; import { type CollectionEntry, getCollection } from 'astro:content';
import BlogPost from '../../layouts/BlogPost.astro'; import BlogPost from '../../layouts/BlogPost.astro';
export async function getStaticPaths() { export async function getStaticPaths() {

View file

@ -1,5 +1,5 @@
--- ---
import { CollectionEntry, getCollection } from 'astro:content'; import { type CollectionEntry, getCollection } from 'astro:content';
import BaseLayout from '../../layouts/BaseLayout.astro'; import BaseLayout from '../../layouts/BaseLayout.astro';