-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
27 lines (27 loc) · 913 Bytes
/
nuxt.config.ts
File metadata and controls
27 lines (27 loc) · 913 Bytes
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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: '2024-11-01',
devtools: { enabled: false },
modules: ['@nuxt/ui', '@pinia/nuxt', '@nuxtjs/storybook'],
css: ['@/assets/css/main.css', '@/assets/scss/main.scss'],
app: {
head: {
title: 'Sub Master - Bilingual subtitles from any youtube video',
meta: [
{ name: 'description', content: 'Bilingual subtitles from any youtube video' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
],
link:[
{ rel: 'icon', type: 'image/png', href: 'images/LogoIcon.png' },
{ rel: 'stylesheet', href: 'https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;700&display=swap' }
]
}
},
components: [
{
path: '~/components',
pathPrefix: false,
}
],
plugins:['@/plugins/focus-plugin.ts']
})