archive lib installs, having cors issues

This commit is contained in:
2025-10-30 18:13:03 +00:00
parent 52d7dc7a87
commit f039ba219d
17 changed files with 44 additions and 119 deletions

13
vite.config.js Normal file
View File

@@ -0,0 +1,13 @@
import vue from '@vitejs/plugin-vue'
import path from "path";
export default {
plugins: [
vue()
],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src")
}
}
}