mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-15 20:17:22 +00:00
13 lines
295 B
TypeScript
13 lines
295 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",
|
|
},
|
|
},
|
|
css: ["assets/css/main.css"],
|
|
});
|