mirror of
https://github.com/ArthurDanjou/website.git
synced 2026-01-14 20:19:35 +01:00
61 lines
984 B
TypeScript
61 lines
984 B
TypeScript
export default defineNuxtConfig({
|
|
srcDir: 'src',
|
|
|
|
css: [
|
|
'@/assets/css/main.scss',
|
|
],
|
|
|
|
app: {
|
|
pageTransition: { name: 'page', mode: 'out-in' },
|
|
},
|
|
|
|
modules: [
|
|
'@nuxtjs/seo',
|
|
'@nuxt/ui',
|
|
'nuxt-auth-utils',
|
|
'@nuxthq/studio',
|
|
'@nuxt/content',
|
|
'@pinia/nuxt',
|
|
'@pinia-plugin-persistedstate/nuxt',
|
|
'@vueuse/nuxt',
|
|
],
|
|
|
|
colorMode: {
|
|
preference: 'light',
|
|
fallback: 'light',
|
|
classPrefix: '',
|
|
classSuffix: '',
|
|
},
|
|
|
|
components: [
|
|
'components/',
|
|
'components/header',
|
|
'components/resume',
|
|
'components/maths',
|
|
],
|
|
|
|
content: {
|
|
highlight: {
|
|
theme: 'github-dark',
|
|
},
|
|
},
|
|
|
|
ui: {
|
|
icons: 'all',
|
|
},
|
|
|
|
devtools: {
|
|
enabled: true,
|
|
|
|
timeline: {
|
|
enabled: true,
|
|
},
|
|
},
|
|
|
|
site: {
|
|
url: 'https://arthurdanjou.fr',
|
|
name: 'My portfolio',
|
|
description: 'Developer enjoying Cloud Infrastructure and Artificial Intelligence. Mathematics Student at Paris-Saclay',
|
|
},
|
|
})
|