mirror of
https://github.com/shishantbiswas/bknd-examples.git
synced 2026-02-27 12:01:16 +00:00
12 lines
263 B
TypeScript
12 lines
263 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: "2025-07-15",
|
|
devtools: { enabled: false },
|
|
modules: ["@nuxtjs/tailwindcss"],
|
|
app: {
|
|
head: {
|
|
title: "Nuxt 🤝 Bknd.io",
|
|
},
|
|
},
|
|
});
|