23 lines
932 B
TypeScript
23 lines
932 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
||
export default defineNuxtConfig({
|
||
devtools: { enabled: true },
|
||
compatibilityDate: "2025-04-22",
|
||
modules: ['@nuxtjs/tailwindcss'],
|
||
css: ['~/assets/css/main.css'],
|
||
app: {
|
||
head: {
|
||
charset: 'utf-8',
|
||
viewport: 'width=device-width, initial-scale=1',
|
||
title: 'AWS云服务专家',
|
||
meta: [
|
||
{ name: 'description', content: '为您的企业提供专业的AWS云服务解决方案,助力数字化转型' }
|
||
],
|
||
link: [
|
||
{ rel: 'stylesheet', href: 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css' },
|
||
{ rel: 'preconnect', href: 'https://fonts.googleapis.com' },
|
||
{ rel: 'preconnect', href: 'https://fonts.gstatic.com', crossorigin: '' },
|
||
{ rel: 'stylesheet', href: 'https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&display=swap' }
|
||
]
|
||
}
|
||
}
|
||
}) |