Skip to content
This repository has been archived by the owner on Jun 17, 2024. It is now read-only.

Commit

Permalink
bugfix: direct loading of /impressum no working
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Yven Riexinger committed Nov 4, 2023
1 parent 4a5275a commit f5b5a1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
basePath: '',
};

module.exports = nextConfig;
2 changes: 1 addition & 1 deletion src/app/(components)/SideLinkBar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export default function SideLinkBar({ mastername }) {
</div>
</div> */}
<Container className="px-4 py-5">
<h2 class="pb-2 border-bottom">{mastername}</h2>
<h2 className="pb-2 border-bottom">{mastername}</h2>
{LinkSammlung.map((linkTriple, idx) => (
<Row className="g-4 py-5" key={idx}>
{linkTriple.map(({ name, href, desc, icon }, idx) => (
Expand Down

0 comments on commit f5b5a1b

Please sign in to comment.