import { defineConfig } from "vite"; // https://vitejs.dev/config export default defineConfig({ build: { rollupOptions: { external: ["better-sqlite3"], output: { sourcemap: true, }, }, }, plugins: [ { name: "restart", closeBundle() { process.stdin.emit("data", "rs"); }, }, ], });