modals olvido contraseña

This commit is contained in:
2024-09-03 13:29:52 +02:00
parent 09e7be2479
commit 86ee49bf80
4 changed files with 67 additions and 31 deletions

View File

@@ -1,16 +1,18 @@
import { fileURLToPath, URL } from 'node:url'
import { fileURLToPath, URL } from "node:url";
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import removeConsole from "vite-plugin-remove-console";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
],
plugins: [vue(), removeConsole()],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
})
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
},
esbuild: { // disable logs in production?
drop: ["console", "debugger"],
},
});