11 lines
182 B
TypeScript
Raw Normal View History

2024-08-20 15:57:59 +02:00
import { defineConfig } from "vite";
// https://vitejs.dev/config/
export default defineConfig({
worker: {
2024-08-20 16:10:02 +02:00
rollupOptions: {
external: ["@codex/sdk-js"],
},
2024-08-20 15:57:59 +02:00
},
});