quack / vite.config.ts
Tony Powell
Serve duckdb wasm from cdn in production
d567792
raw
history blame
280 Bytes
import path from "path";
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
// https://vitejs.dev/config/
export default defineConfig(() => ({
plugins: [react()],
resolve: {
alias: {
"~": path.resolve(__dirname, "src"),
},
},
}));