add bcryptjs and remove vite-plugin-html

This commit is contained in:
2025-05-22 18:21:29 -04:00
parent 8938709a1e
commit 69dcd51b3c
2 changed files with 6 additions and 8 deletions

View File

@ -9,9 +9,11 @@
"preview": "vite preview"
},
"devDependencies": {
"sass": "^1.86.0",
"typescript": "^5.8.2",
"vite": "^6.2.2",
"vite-plugin-html": "^3.2.2"
"sass": "^1.89.0",
"typescript": "^5.8.3",
"vite": "^6.3.5"
},
"dependencies": {
"bcryptjs": "^3.0.2"
}
}

View File

@ -1,10 +1,6 @@
import { defineConfig } from 'vite'
import { createHtmlPlugin } from 'vite-plugin-html'
export default defineConfig({
plugins: [
createHtmlPlugin({minify: true}),
],
root: "src",
build: {
outDir: "../dist"