generated from gitea_admin/default
58 lines
1014 B
JavaScript
58 lines
1014 B
JavaScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: '2025-07-15',
|
|
|
|
devtools: {
|
|
enabled: false
|
|
},
|
|
|
|
typescript: {
|
|
strict: false,
|
|
typeCheck: false
|
|
},
|
|
|
|
app: {
|
|
pageTransition: {
|
|
name: 'page',
|
|
mode: 'out-in'
|
|
},
|
|
},
|
|
|
|
css: ['@/assets/scss/main.scss'],
|
|
|
|
image: {
|
|
// Domaine de tes images Strapi / OVH
|
|
domains: [
|
|
'media.orchestre-ile.com' // passe par le reverse proxy plus tard
|
|
],
|
|
quality: 80,
|
|
format: ['webp', 'avif', 'jpeg', 'jpg', 'png', 'gif' ],
|
|
screens: {
|
|
xs: 320,
|
|
sm: 640,
|
|
md: 768,
|
|
lg: 1024,
|
|
xl: 1280,
|
|
xxl: 1536,
|
|
'2xl': 1536
|
|
},
|
|
presets: {
|
|
full: {
|
|
modifiers: {
|
|
fit: 'cover',
|
|
}
|
|
},
|
|
avatar: {
|
|
modifiers: {
|
|
fit: 'cover',
|
|
format: 'jpg',
|
|
width: 50,
|
|
height: 50
|
|
}
|
|
}
|
|
},
|
|
densities: [1, 2],
|
|
},
|
|
|
|
modules: ['@nuxt/image'],
|
|
}) |