Skip to content

Commit a1b8655

Browse files
committed
chore: rollback bridge links
1 parent 5759e01 commit a1b8655

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

packages/app-explorer/src/systems/Core/components/TopNav/TopNav.tsx

+6-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ export function TopNav() {
4242

4343
const tooling = (
4444
<>
45-
<Nav.MenuItem href="/portal">Bridge</Nav.MenuItem>
45+
<Nav.MenuItem href="https://next-alpha.fuel.network/bridge">
46+
Bridge
47+
</Nav.MenuItem>
4648
<Nav.MenuItem
4749
isActive
4850
as={NextLink}
@@ -51,7 +53,9 @@ export function TopNav() {
5153
>
5254
Explorer
5355
</Nav.MenuItem>
54-
<Nav.MenuItem href="/portal">Ecosystem</Nav.MenuItem>
56+
<Nav.MenuItem href="https://next-alpha.fuel.network/ecosystem">
57+
Ecosystem
58+
</Nav.MenuItem>
5559
</>
5660
);
5761

packages/app-portal/vite.config.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ export default defineConfig({
1919
},
2020
build: {
2121
target: ['es2020'],
22-
outDir: resolve(__dirname, '../app-explorer/public/portal'),
22+
...(CI
23+
? { outDir: resolve(__dirname, '../app-explorer/public/portal') }
24+
: {}),
2325
},
2426
});

0 commit comments

Comments
 (0)