forked from Ivasoft/geovisio-website
20 lines
439 B
TypeScript
20 lines
439 B
TypeScript
import { fileURLToPath, URL } from "node:url";
|
|
|
|
import { defineConfig } from "vite";
|
|
import vue from "@vitejs/plugin-vue";
|
|
import eslintPlugin from "vite-plugin-eslint";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
base: "/",
|
|
plugins: [vue(), eslintPlugin()],
|
|
resolve: {
|
|
alias: {
|
|
"@": fileURLToPath(new URL("./src", import.meta.url)),
|
|
},
|
|
},
|
|
optimizeDeps: {
|
|
exclude: ["src/lib/Map.js"],
|
|
},
|
|
});
|