Files
archived-drop-api-autogen/nuxt.config.ts
DecDuck f26e7f1a45 Initial commit
Created the barebones of the tooling.

Design comes next.
2025-08-09 20:19:16 +10:00

13 lines
296 B
TypeScript

// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: '2025-07-15',
devtools: { enabled: true },
hooks: {
"build:before": async () => {
const build = (await import("./tools/index")).default;
await build();
}
}
})