From 795da89c7778fec7db7f9396e43319598768ac8f Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Sun, 16 Feb 2025 17:52:18 +0100 Subject: [PATCH] chore: Adjust viteconfig for updated vite version Signed-off-by: Ferdinand Thiessen --- cypress.config.mjs | 4 ++-- src/components/NcAppNavigation/NcAppNavigation.vue | 6 +++--- src/components/NcAppSidebar/NcAppSidebar.vue | 4 ++-- vite.config.mts | 4 ++-- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/cypress.config.mjs b/cypress.config.mjs index 99d8ea56bc..a8c2c1fd27 100644 --- a/cypress.config.mjs +++ b/cypress.config.mjs @@ -77,9 +77,9 @@ export default defineConfig({ devSourcemap: true, preprocessorOptions: { scss: { - additionalData: `@use 'sass:math'; $scope_version:${SCOPE_VERSION}; @import 'variables'; @import 'material-icons';`, + additionalData: `@use 'sass:math'; @use 'variables.scss' as *; @use 'material-icons.css' as *; $scope_version:${SCOPE_VERSION};`, sourceMapContents: false, - includePaths: [ + loadPaths: [ resolve(__dirname, 'src/assets'), ], }, diff --git a/src/components/NcAppNavigation/NcAppNavigation.vue b/src/components/NcAppNavigation/NcAppNavigation.vue index c9f8d7a762..9d1890ff3b 100644 --- a/src/components/NcAppNavigation/NcAppNavigation.vue +++ b/src/components/NcAppNavigation/NcAppNavigation.vue @@ -56,8 +56,8 @@