mirror of
https://github.com/Qortal/Q-Apps-Utils.git
synced 2025-01-30 14:52:18 +00:00
15 lines
315 B
TypeScript
15 lines
315 B
TypeScript
|
import { defineConfig } from "vite";
|
||
|
import react from "@vitejs/plugin-react";
|
||
|
import { resolve } from "path";
|
||
|
// https://vitejs.dev/config/
|
||
|
export default defineConfig({
|
||
|
build: {
|
||
|
lib: {
|
||
|
entry: resolve(__dirname, "index.js"),
|
||
|
name: "QortalUtils",
|
||
|
},
|
||
|
},
|
||
|
plugins: [react()],
|
||
|
base: "",
|
||
|
});
|