Fix the stupid overflow error

This commit is contained in:
MotorTruck1221 2024-04-18 14:39:11 -06:00
parent d3d4736bae
commit 3121dd8e5d
No known key found for this signature in database
GPG key ID: 08F417E2B8B61EA4
2 changed files with 4 additions and 4 deletions

View file

@ -37,11 +37,11 @@ export default function App() {
{window.location.origin === "https://nebulaproxy.io" && <Meta />} {window.location.origin === "https://nebulaproxy.io" && <Meta />}
{/* {window.location.origin === "http://localhost:8080" && <Meta />} */} {/* {window.location.origin === "http://localhost:8080" && <Meta />} */}
<Suspense fallback={<LoadSuspense />}> <Suspense fallback={<LoadSuspense />}>
<main className="absolute z-30 h-screen w-screen"> <div className="z-30 h-full w-full">
<Routes /> <Routes />
</main> </div>
<div <div
className={`z-20 h-screen w-screen ${!background && "bg-primary"}`} className={`z-20 h-full w-full ${!background && "bg-primary"}`}
> >
{init && particlesUrl !== "none" && ( {init && particlesUrl !== "none" && (
<Particles <Particles

View file

@ -54,7 +54,7 @@ export default defineConfig({
server: { server: {
proxy: { proxy: {
"/bare/": { "/bare/": {
target: "http://localhost:8080/", target: "http://localhost:8080/bare/",
changeOrigin: true, changeOrigin: true,
rewrite: (path) => path.replace(/^\/bare\//, "") rewrite: (path) => path.replace(/^\/bare\//, "")
}, },