mirror of
https://github.com/NebulaServices/Nebula.git
synced 2025-05-17 05:20:01 -04:00
Fix the stupid overflow error
This commit is contained in:
parent
d3d4736bae
commit
3121dd8e5d
2 changed files with 4 additions and 4 deletions
|
@ -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
|
||||||
|
|
|
@ -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\//, "")
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue