From 1f0dacb7e599a230e0fd07fa91b778e8f14e8c4e Mon Sep 17 00:00:00 2001 From: Pascal Roehling Date: Mon, 11 Mar 2024 21:18:37 +0100 Subject: [PATCH] Add missing entry externalizing vuetify styles --- packages/core/CHANGELOG.md | 1 + packages/core/rollup.config.js | 1 + 2 files changed, 2 insertions(+) diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index c2d0bc7c5..465d9a7e0 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -3,6 +3,7 @@ ## unpublished Fix: Revert back to previous dependency modelling. +Fix: Add missing entry externalizing vuetify styles. ## 2.0.0-alpha.7 diff --git a/packages/core/rollup.config.js b/packages/core/rollup.config.js index 6a284f4a0..4fbcf8fbe 100644 --- a/packages/core/rollup.config.js +++ b/packages/core/rollup.config.js @@ -23,6 +23,7 @@ const external = createFilter( 'olcs', 'vue', 'vuetify', + 'vuetify/dist/vuetify.min.css', 'vuex', ], null,