-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
31 lines (30 loc) · 1.49 KB
/
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
30
31
const description = 'Unity Multiplayer is a multilingual factions Minecraft server for creators, which also features the first free and public live translation mod UnityTranslate.';
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: '2024-11-01',
devtools: { enabled: false },
modules: ['@nuxtjs/tailwindcss'],
css: [
'~/assets/css/index.css'
],
app: {
head: {
link: [
{ rel: 'stylesheet', href: 'https://fonts.googleapis.com/icon?family=Material+Icons' },
{ rel: 'stylesheet', href: 'https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,1,0' },
{ rel: 'icon', href: '/icon.svg' }
],
meta: [
{ name: 'description', content: description },
{ name: 'og:type', content: 'website' },
{ name: 'og:description', content: description },
{ name: 'og:url', content: 'https://unitymultiplayer.online' },
{ name: 'og:image', content: 'https://unitymultiplayer.online/icon.svg' },
{ name: 'twitter:description', content: description },
{ name: 'twitter:url', content: 'https://unitymultiplayer.online' },
{ name: 'twitter:card', content: 'summary' },
{ name: 'twitter:image', content: 'https://unitymultiplayer.online/icon.svg' },
]
},
},
});