-
Notifications
You must be signed in to change notification settings - Fork 3
/
nuxt.config.ts
31 lines (30 loc) · 1.3 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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devtools: { enabled: true },
css: ['~/assets/styles/layout.scss', '~/assets/styles/misc.scss', '~/assets/styles/components.scss'],
vite: { worker: { format: 'es' } },
app: {
head: {
title: 'PackXBR',
link: [
{ rel: 'apple-touch-icon', sizes: '180x180', href: '/apple-touch-icon.png' },
{ rel: 'icon', type: 'image/png', sizes: '32x32', href: '/favicon-32x32.png' },
{ rel: 'icon', type: 'image/png', sizes: '16x16', href: '/favicon-16x16.png' },
{ rel: 'manifest', href: '/site.webmanifest' },
],
meta: [
{ name: 'description', content: 'Bulk Pixel Art Upscaler' },
{ name: 'keywords', content: 'xBR, xBRZ, pixel art, upscaler, bulk' },
{ name: 'author', content: 'F53' },
{ name: 'theme-color', content: '#4b0000' },
// twitter stuff
{ property: 'og:title', content: 'PackXBR' },
{ property: 'og:description', content: 'Bulk Pixel Art Upscaler' },
{ property: 'og:image', content: '/android-chrome-512x512.png' },
{ name: 'twitter:card', content: 'summary' },
{ name: 'twitter:site', content: '@CodeF53' },
{ name: 'twitter:creator', content: '@CodeF53' },
],
},
},
})