add image docker
All checks were successful
Deploy / Build and Deploy to Production (push) Successful in 16s

This commit is contained in:
isUnknown 2026-01-08 15:56:06 +01:00
parent a7918a35e2
commit 3cc4da63fb
3 changed files with 26 additions and 18 deletions

View file

@ -1,5 +1,5 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
// https://vite.dev/config/
export default defineConfig({
@ -16,11 +16,14 @@ export default defineConfig({
assetFileNames: (assetInfo) => {
// Le CSS principal doit s'appeler index.css pour correspondre à header.php
if (assetInfo.name && assetInfo.name.endsWith('.css')) {
return 'index.css'
return 'index.css';
}
return '[name].[ext]'
}
}
}
}
})
return '[name].[ext]';
},
},
},
build: {
minify: false,
},
},
});