urdf-visualizer / viewer /vite.config.ts
jurmy24's picture
feat(wip): add viewer
16ab111
raw
history blame
272 Bytes
import { defineConfig } from "vite";
import path from "path";
import react from "@vitejs/plugin-react";
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
});