0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-20 22:12:38 -05:00

fix: test fixture paths

This commit is contained in:
bholmesdev 2024-01-08 18:02:42 -05:00 committed by Nate Moore
parent 395a8a1400
commit 05e1005c0b
2 changed files with 5 additions and 5 deletions

View file

@ -1,5 +1,5 @@
import { defineConfig } from 'astro/config';
import { db, field } from '@astro/db';
import db, { field } from '@astrojs/db';
// https://astro.build/config
export default defineConfig({

View file

@ -5,16 +5,16 @@ const authors: Array<typeof Author.$inferInsert> = [
name: 'Ben',
},
{
title: 'Nate',
name: 'Nate',
},
{
title: 'Erika',
name: 'Erika',
},
{
title: 'Bjorn',
name: 'Bjorn',
},
{
title: 'Sarah',
name: 'Sarah',
},
];