| Numéro du ticket | Titre du ticket | |------------------|-----------------| | #267 | Lister les réceptions en attente | ## Description de la PR ## Modification du .env ## Check list - [x] Pas de régression - [ ] TU/TI/TF rédigée - [x] TU/TI/TF OK - [x] CHANGELOG modifié Reviewed-on: #9 Reviewed-by: Autin <tristan@yuno.malio.fr> Co-authored-by: sroy <sebastien@yuno.malio.fr> Co-committed-by: sroy <sebastien@yuno.malio.fr>
40 lines
772 B
TypeScript
40 lines
772 B
TypeScript
export default defineNuxtConfig({
|
|
compatibilityDate: '2025-07-15',
|
|
devtools: { enabled: true },
|
|
ssr: false,
|
|
app: {
|
|
baseURL: process.env.NUXT_PUBLIC_APP_BASE || '/'
|
|
},
|
|
modules: [
|
|
'@nuxtjs/tailwindcss',
|
|
'@pinia/nuxt',
|
|
'nuxt-toast',
|
|
'@nuxtjs/i18n',
|
|
'@nuxt/icon'
|
|
],
|
|
css: ['~/assets/css/main.css', '~/assets/css/toast.css'],
|
|
runtimeConfig: {
|
|
public: {
|
|
apiBase: process.env.NUXT_PUBLIC_API_BASE
|
|
}
|
|
},
|
|
toast: {
|
|
settings: {
|
|
timeout: 10000,
|
|
closeOnClick: true,
|
|
progressBar: false
|
|
}
|
|
},
|
|
i18n: {
|
|
strategy: 'no_prefix',
|
|
defaultLocale: 'fr',
|
|
langDir: 'locales',
|
|
locales: [
|
|
{ code: 'fr', file: 'fr.json', name: 'Français' }
|
|
]
|
|
},
|
|
typescript: {
|
|
strict: true
|
|
}
|
|
})
|