* Run `npm run build` to create a dist folder that just has to be delivered by a web server.
* To be able to interact with a local MediaWiki server, use an apache proxy configuration, e.g.
- <Directory /home/philipp/projects/winterrodeln/mediawiki>
- RewriteEngine On
- RewriteBase "/winterrodeln/"
- RewriteRule "^wrapp/(.*)$" "http://localhost:3000/winterrodeln/wrapp/$1" [P]
- </Directory>
- ProxyPassReverse /winterrodeln/wrapp/ http://localhost:3000/
+ <Location /winterrodeln/wrapp>
+ ProxyPass http://localhost:3000/winterrodeln/wrapp
+ ProxyPassReverse http://localhost:3000/winterrodeln/wrapp
+ </Location>
start the Vite server with `npm run dev -- --base /winterrodeln/wrapp` and use http://localhost/winterrodeln/wrapp instead of http://localhost:3000/ to access the server.