1. Kartendarstellung (Neutralisierung):
* Die TileLayer-URL in heatmap-tool/frontend/src/components/MapDisplay.tsx wurde auf eine neutrale CARTO light_all-Kachelansicht umgestellt und die Quellenangabe entsprechend angepasst.
24 lines
426 B
TypeScript
24 lines
426 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
base: '/heatmap/',
|
|
plugins: [react()],
|
|
server: {
|
|
host: true,
|
|
fs: {
|
|
strict: false
|
|
},
|
|
allowedHosts: [
|
|
'floke-ai.duckdns.org'
|
|
],
|
|
proxy: {
|
|
'/api': {
|
|
target: 'http://heatmap-backend:8000',
|
|
changeOrigin: true,
|
|
},
|
|
}
|
|
}
|
|
})
|