import type { Plugin } from 'vite';
export function preloadPlugin(): Plugin {
return {
name: 'vite-plugin-preload',
transformIndexHtml(html) {
// Ajouter des preload hints pour les chunks critiques
const preloadLinks = `
`;
return html.replace('', `${preloadLinks}\n `);
},
};
}