68573
continuous-integration/drone/push Build is passing Details

master
37b7 3 weeks ago
parent 3fa0108b84
commit 5f674c6161

@ -8,25 +8,25 @@ export interface NavigationItem {
export const navigationItems: NavigationItem[] = [ export const navigationItems: NavigationItem[] = [
{ {
finder: 'home', finder: 'home',
path: '/', path: process.env.NODE_ENV === 'production' ? '/containers/matheothierry-portfolio_nuxt/' : '/',
name: 'Home', name: 'Home',
icon: 'home' icon: 'home'
}, },
{ {
finder: 'projects', finder: 'projects',
path: '/projects', path: process.env.NODE_ENV === 'production' ? '/containers/matheothierry-portfolio_nuxt/projects' : '/projects',
name: 'Projets', name: 'Projets',
icon: 'projects' icon: 'projects'
}, },
{ {
finder: 'about', finder: 'about',
path: '/about', path: process.env.NODE_ENV === 'production' ? '/containers/matheothierry-portfolio_nuxt/about' : '/about',
name: 'À Propos', name: 'À Propos',
icon: 'about' icon: 'about'
}, },
{ {
finder: 'cv', finder: 'cv',
path: '/cv', path: process.env.NODE_ENV === 'production' ? '/containers/matheothierry-portfolio_nuxt/cv' : '/cv',
name: 'CV', name: 'CV',
icon: 'cv' icon: 'cv'
} }

@ -26,7 +26,7 @@ export default defineNuxtConfig({
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' } { rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }
], ],
}, },
cdnURL: process.env.NODE_ENV === 'production' ? 'https://codefirst.iut.uca.fr/containers/matheothierry-portfolio_nuxt/' : '/' buildAssetsDir: process.env.NODE_ENV === 'production' ? '/containers/matheothierry-portfolio_nuxt/_nuxt/' : '/_nuxt/',
}, },
modules: ['@nuxt/image'], modules: ['@nuxt/image'],

Loading…
Cancel
Save