mirror of
https://github.com/withastro/astro.git
synced 2025-01-06 22:10:10 -05:00
3f27e09628
* Rename `defineDB` to `defineDb` * Add changeset * Improve changeset
8 lines
124 B
TypeScript
8 lines
124 B
TypeScript
import { menu } from './shared';
|
|
import { defineDb } from 'astro:db';
|
|
|
|
export default defineDb({
|
|
tables: {
|
|
menu,
|
|
},
|
|
});
|