tsd
This commit is contained in:
parent
48815fca01
commit
2c39f622ce
2 changed files with 6 additions and 6 deletions
|
|
@ -1,12 +1,9 @@
|
||||||
server {
|
server {
|
||||||
listen 80;
|
listen 80;
|
||||||
|
|
||||||
# Use 'alias' to map the specific sub-path
|
# Redirect traffic from /lab/data-dashboard/ to your index.html
|
||||||
location /lab/data-dashboard/ {
|
location /lab/data-dashboard/ {
|
||||||
alias /usr/share/nginx/html/;
|
alias /usr/share/nginx/html/;
|
||||||
try_files $uri $uri/ /index.html;
|
try_files $uri $uri/ /index.html;
|
||||||
}
|
}
|
||||||
|
|
||||||
gzip on;
|
|
||||||
gzip_types text/css application/javascript application/json;
|
|
||||||
}
|
}
|
||||||
|
|
@ -2,6 +2,9 @@ import { defineConfig } from 'vite';
|
||||||
import react from '@vitejs/plugin-react';
|
import react from '@vitejs/plugin-react';
|
||||||
|
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
base: '/lab/data-dashboard/', // This tells Vite to prepend this to all paths
|
base: '/lab/data-dashboard/', // Essential: This fixes the asset 404s
|
||||||
plugins: [react()],
|
plugins: [react()],
|
||||||
|
worker: {
|
||||||
|
format: 'es',
|
||||||
|
},
|
||||||
});
|
});
|
||||||
Loading…
Add table
Reference in a new issue