build: fix build on FreeBSD (#3403)

- vite: use rollup/wasm-node
- use vitejs/plugin-react instead of plugin-react-swc
This commit is contained in:
jan666 2024-10-18 01:26:53 +02:00 committed by GitHub
parent 0232afd98d
commit 5f6a90e5aa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 2077 additions and 1852 deletions

3920
ui/package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -58,7 +58,7 @@
"@types/react-dom": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"@vitejs/plugin-react-swc": "^3.7.1",
"@vitejs/plugin-react": "^4.3.2",
"@vitest/coverage-v8": "^2.1.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
@ -74,5 +74,10 @@
"vite": "^5.4.9",
"vite-plugin-pwa": "^0.20.5",
"vitest": "^2.1.1"
},
"overrides": {
"vite": {
"rollup": "npm:@rollup/wasm-node"
}
}
}

View file

@ -1,5 +1,5 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react-swc'
import react from '@vitejs/plugin-react'
import { VitePWA } from 'vite-plugin-pwa'
const frontendPort = parseInt(process.env.PORT) || 4533