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 58a0f360db User Experience Improvements:
Buttons are less bright for better contrast

Hyperlink color throughout the app changed so they are easier to see
2025-01-02 16:59:59 -07:00

13 lines
287 B
TypeScript

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