18 lines
334 B
TypeScript
18 lines
334 B
TypeScript
export default defineNuxtConfig({
|
|
compatibilityDate: '2025-07-15',
|
|
|
|
devtools: { enabled: true },
|
|
|
|
css: ['@/assets/styles/main.css'],
|
|
|
|
app: {
|
|
head: {
|
|
title: 'BigDataTech-Cloud',
|
|
htmlAttrs: {
|
|
lang: 'vi',
|
|
},
|
|
link: [{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }],
|
|
},
|
|
},
|
|
});
|