mirror of
https://github.com/Drop-OSS/drop-api-autogen.git
synced 2026-01-30 20:55:17 +01:00
13 lines
296 B
TypeScript
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();
|
|
}
|
|
}
|
|
})
|