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