diff --git a/www/src/pages/blog/astro-018.astro b/www/src/pages/blog/astro-018.astro index 147e53208..563a91055 100644 --- a/www/src/pages/blog/astro-018.astro +++ b/www/src/pages/blog/astro-018.astro @@ -7,7 +7,7 @@ import BlockQuote from '../../components/BlockQuote.astro'; import GoogleAnalytics from '../../components/GoogleAnalytics.astro'; import Note from '../../components/Note.astro'; import Shell from '../../components/Shell.astro'; -import { mediaQueries } from '../../config.js'; +import { mediaQueries } from '../../config'; let title = 'Astro 0.18 Release'; let description = `Introducing: Responsive partial hydration • Solid.js support • Lit SSR support • Named slots • Global style support • and more!`; diff --git a/www/src/pages/blog/astro-019.astro b/www/src/pages/blog/astro-019.astro index d0256ccc1..68c2f0e99 100644 --- a/www/src/pages/blog/astro-019.astro +++ b/www/src/pages/blog/astro-019.astro @@ -7,7 +7,7 @@ import BlockQuote from '../../components/BlockQuote.astro'; import GoogleAnalytics from '../../components/GoogleAnalytics.astro'; import Note from '../../components/Note.astro'; import Shell from '../../components/Shell.astro'; -import { mediaQueries } from '../../config.js'; +import { mediaQueries } from '../../config'; let title = 'Astro 0.19'; let description = `Introducing: Next.js-inspired dynamic routing • Astro.resolve() • client:only components • translations • and more!`; diff --git a/www/src/pages/blog/index.astro b/www/src/pages/blog/index.astro index 410ac1727..891b3dbb2 100644 --- a/www/src/pages/blog/index.astro +++ b/www/src/pages/blog/index.astro @@ -7,6 +7,8 @@ let title = 'Astro Blog'; let description = 'Everything you need to know about Astro, direct from mission control.'; let permalink = 'https://astro.build/blog'; let lang = 'en'; +const pages = import.meta.globEager('./{**, !index}.astro'); +console.debug(pages['./demo-day-2021-09.astro']); --- @@ -67,6 +69,7 @@ let lang = 'en';
{description}