Move login.ejs into a vite handled view

This commit is contained in:
Johannes Zellner
2024-12-13 22:29:34 +01:00
parent 0513ed16bb
commit d9402bc24d
5 changed files with 142 additions and 129 deletions

View File

@@ -5,7 +5,9 @@ import { NodePackageImporter } from 'sass';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
plugins: [
vue()
],
server: {
fs: {
// Allow serving files from one level up to the project root for monaco editor assets
@@ -21,6 +23,7 @@ export default defineConfig({
authcallback: resolve('authcallback.html'),
filemanager: resolve('filemanager.html'),
index: resolve('index.html'),
login: resolve('login.html'),
logs: resolve('logs.html'),
notfound: resolve('notfound.html'),
passwordreset: resolve('passwordreset.html'),