All checks were successful
Release / release (push) Successful in 57s
| 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é Co-authored-by: kevin <kevin@yuno.malio.fr> Reviewed-on: #7 Co-authored-by: tristan <tristan@yuno.malio.fr> Co-committed-by: tristan <tristan@yuno.malio.fr>
25 lines
539 B
TypeScript
25 lines
539 B
TypeScript
import { defineConfig } from 'histoire'
|
|
import { HstVue } from '@histoire/plugin-vue'
|
|
import vue from '@vitejs/plugin-vue'
|
|
import tailwindcss from 'tailwindcss'
|
|
import autoprefixer from 'autoprefixer'
|
|
import path from 'path'
|
|
|
|
export default defineConfig({
|
|
setupFile: './histoire.setup.ts',
|
|
vite: {
|
|
plugins: [vue()],
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, './'),
|
|
},
|
|
},
|
|
css: {
|
|
postcss: {
|
|
plugins: [tailwindcss(), autoprefixer()],
|
|
},
|
|
},
|
|
},
|
|
plugins: [HstVue()],
|
|
})
|