AnoPaper/vite.config.js

12 lines
226 B
JavaScript
Raw Permalink Normal View History

2022-10-31 18:31:16 +03:00
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
2022-10-17 13:50:40 +03:00
// https://vitejs.dev/config/
export default defineConfig({
2022-10-31 18:31:16 +03:00
plugins: [react()],
build: {
2023-04-02 10:53:32 +03:00
outDir: "./dist",
2023-04-19 15:59:56 +03:00
target: "esnext",
2022-10-31 18:31:16 +03:00
},
});