3
0
mirror of https://github.com/Qortal/q-support.git synced 2025-02-11 17:55:50 +00:00
q-support/vite.config.ts
IrohDW 19a5754d30 FeeHistoryModal is now editable by app owner
Fixed bug with feeFilter's Time Check in FeePricePublish.ts

feeAmount in FeeData.tsx now fetches the newest price of a given FeeType instead of using a hardcoded value

Fixed bug that prevented app from working if no FeeData was found

Reverted publishing content as file back to base64

Vite builds with target "esnext" to allow top level await.
2024-07-26 15:46:08 -06:00

12 lines
261 B
TypeScript

import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
base: "",
build: {
target: "esnext", //browsers can handle the latest ES features
},
});