Remove the old dashboard code

This commit is contained in:
Johannes Zellner
2025-07-04 19:36:07 +02:00
parent ccda1b4523
commit a98fce2160
96 changed files with 78 additions and 32459 deletions

View File

@@ -1,7 +1,6 @@
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
import { resolve } from 'path';
import { NodePackageImporter } from 'sass';
// https://vitejs.dev/config/
export default defineConfig({
@@ -37,15 +36,4 @@ export default defineConfig({
},
},
},
// only exists since we also want to use sass to compile theme.css for oidc login views
css: {
preprocessorOptions: {
scss: {
api: 'modern-compiler',
importers: [ new NodePackageImporter() ],
quietDeps: true,
silenceDeprecations: [ 'import', 'global-builtin' ],
},
},
},
});