5a674f976d
* test1 * fixed test * removed console.log * changeset * pnpm-lock * fixed test again * fta * fta2 * fix: wait for fetch * -fixed test template * empty Co-authored-by: Matthew Phillips <matthew@skypack.dev> Co-authored-by: Nate Moore <nate@astro.build> Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com> Co-authored-by: My Name <my.name@my-company.com>
7 lines
181 B
JavaScript
7 lines
181 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import prefetch from '@astrojs/prefetch';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [prefetch()],
|
|
});
|