You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
m3u8-downloader-TypeScript/vite.config.ts

19 lines
473 B
TypeScript

4 years ago
import { defineConfig } from "vite";
import reactRefresh from "@vitejs/plugin-react-refresh";
import { resolve } from "path";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [reactRefresh()],
build: {
target: "es2015",
4 years ago
rollupOptions: {
input: {
main: resolve(__dirname, "main_window.html"),
browser: resolve(__dirname, "browser_window.html"),
4 years ago
},
},
outDir: resolve(__dirname, "dist/electron"),
4 years ago
},
});