-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
53 lines (52 loc) · 1.36 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// nuxt.config.ts
import vuetify, { transformAssetUrls } from 'vite-plugin-vuetify'
export default defineNuxtConfig({
experimental: {
payloadExtraction: true
},
compatibilityDate: '2024-04-03',
devtools: { enabled: true },
build: {
transpile: ['vuetify'],
},
modules: [
(_options, nuxt) => {
nuxt.hooks.hook('vite:extendConfig', (config) => {
// @ts-expect-error
config.plugins.push(vuetify({ autoImport: true }))
})
},
// Add any other modules here if necessary
],
vite: {
vue: {
template: {
transformAssetUrls,
},
},
},
css: [
'/assets/custom-theme.scss',
],
app: {
baseURL: '/socrobwebsite/', // Adjust this to match your GitHub Pages repo name
buildAssetsDir: 'assets',
head: {
title: 'SocRob@Home', // Your app title
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{
hid: 'description',
name: 'description',
content: 'This is a brief description of your application.'
},
{ name: 'msapplication-TileColor', content: '#da532c' },
{ name: 'theme-color', content: '#ffffff' }
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/socrobwebsite/socrobfavicon.ico' } // Adjusted path
]
}
},
})