| Numéro du ticket | Titre du ticket | |------------------|-----------------| | | | ## Description de la PR ## Modification du .env ## Check list - [ ] Pas de régression - [ ] TU/TI/TF rédigée - [ ] TU/TI/TF OK - [ ] CHANGELOG modifié Reviewed-on: #18 Co-authored-by: tristan <tristan@yuno.malio.fr> Co-committed-by: tristan <tristan@yuno.malio.fr>
22 lines
472 B
TypeScript
22 lines
472 B
TypeScript
import { fileURLToPath } from 'node:url'
|
|
import { dirname, join } from 'node:path'
|
|
|
|
const dir = dirname(fileURLToPath(import.meta.url))
|
|
|
|
export default defineNuxtConfig({
|
|
modules: ['@nuxtjs/tailwindcss','@nuxt/icon'],
|
|
css: [join(dir, 'app/assets/css/malio.css')],
|
|
|
|
components: [
|
|
{
|
|
path: join(dir, 'app/components/malio'),
|
|
prefix: 'Malio',
|
|
pathPrefix: false,
|
|
},
|
|
],
|
|
|
|
tailwindcss: {
|
|
configPath: join(dir, 'tailwind.config.ts'),
|
|
}
|
|
})
|