Files
taiga-tableview-frontend/vite.config.ts
2025-05-30 17:07:06 +03:00

16 lines
412 B
TypeScript

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)),
},
},
});