-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
29 lines (29 loc) · 878 Bytes
/
nuxt.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import packageJSON from './package.json';
// https://v3.nuxtjs.org/api/configuration/nuxt.config
export default defineNuxtConfig({
app: {
head: {
title: packageJSON.displayName || '',
charset: 'utf-8',
viewport: 'width=device-width, initial-scale=1',
meta: [
{ name: 'description', content: packageJSON.description || '' },
{ name: 'keywords', content: packageJSON.keywords?.toString() || '' },
{ name: 'robots', content: 'noindex' },
{ name: 'googlebot', content: 'noindex' },
],
link: [{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }],
},
},
compatibilityDate: '2024-11-01',
devtools: { enabled: true },
modules: [
// https://eslint.nuxt.com
'@nuxt/eslint',
// https://tailwindcss.nuxtjs.org
'@nuxtjs/tailwindcss',
],
typescript: {
shim: false,
},
});