Remove mode parameter from Vite config export function

This commit is contained in:
2025-12-27 22:49:14 +01:00
parent f6efa465bc
commit 8d84d72ad6

View File

@@ -4,7 +4,7 @@ import react from "@vitejs/plugin-react-swc";
import { defineConfig } from "vitest/config";
// https://vitejs.dev/config/
export default defineConfig(( { mode } ) => ({
export default defineConfig(() => ({
// base: mode === 'production' && process.env.GITHUB_ACTIONS ? '/website/' : '/',
server: {
host: "::",