-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
39 lines (39 loc) · 873 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
30
31
32
33
34
35
36
37
38
39
// https://nuxt.com/docs/api/configuration/nuxt-config
import vuetify, { transformAssetUrls } from 'vite-plugin-vuetify';
export default defineNuxtConfig({
app: {
baseURL: process.env.NUXT_APP_BASE_URL || '/'
},
build: {
transpile: ['vuetify']
},
compatibilityDate: '2024-11-01',
components: [
{
path: '~/components',
pathPrefix: false
}
],
devtools: { enabled: true },
modules: [
(_options, nuxt) => {
nuxt.hooks.hook('vite:extendConfig', config => {
// @ts-expect-error
config.plugins.push(vuetify({ autoImport: true }));
});
}
],
runtimeConfig: {
public: {
githubPersonalAccessToken: process.env.GITHUB_PERSONAL_ACCESS_TOKEN
}
},
ssr: false, // GitHub Pages is for static sites
vite: {
vue: {
template: {
transformAssetUrls
}
}
}
});