Initial release

This commit is contained in:
2025-05-30 17:07:06 +03:00
commit cd63464bc2
28 changed files with 988 additions and 0 deletions

15
vite.config.ts Normal file
View File

@@ -0,0 +1,15 @@
import { fileURLToPath, URL } from "node:url";
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
// const ROOT_BASE_URL = "/" + process.env.VITE_ROOT_BASE_URL + "/" || "/";
const ROOT_BASE_URL = "/tableview/";
export default defineConfig({
base: ROOT_BASE_URL,
plugins: [vue()],
resolve: {
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
},
});