mirror of
https://github.com/Qortal/q-support.git
synced 2025-02-11 09:45:50 +00:00
Buttons are less bright for better contrast Hyperlink color throughout the app changed so they are easier to see
13 lines
287 B
TypeScript
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
|
|
},
|
|
});
|