diff --git a/playground/vue-lib/vite.config.lib.ts b/playground/vue-lib/vite.config.lib.ts index a31a2eaa..13ac7c83 100644 --- a/playground/vue-lib/vite.config.lib.ts +++ b/playground/vue-lib/vite.config.lib.ts @@ -11,6 +11,10 @@ export default defineConfig({ name: 'MyVueLib', formats: ['es'], fileName: 'my-vue-lib', + // Vite 6 only property to give a specific name to the css file. + // Set as "style" to match Vite 5 for testing purposes. + // @ts-expect-error + cssFileName: 'style', }, rollupOptions: { external: ['vue'],