Skip to content
Snippets Groups Projects
Commit 5b3fd436 authored by Liliana Sanfilippo's avatar Liliana Sanfilippo
Browse files

readded echo to try and solve problem

parent c62c2c71
No related branches found
No related tags found
No related merge requests found
Pipeline #391313 failed
......@@ -34,7 +34,7 @@ pages:
- yarn build
- mv dist public
#- cp -a dist/. public/ #original
#- echo '/* /index.html 200' > public/_redirects #original
echo '/* /index.html 200' > public/_redirects #original
#- mv dist public #Ensure the output directory is renamed to public
artifacts:
paths:
......
......@@ -37,7 +37,7 @@ const App = () => {
{/* Header and PageContent */}
<Routes>
{Object.entries(pathMapping).map(
([path, {component: Component, header: Head}]) => (
([path, {component: Component, header: Head, name}]) => (
<Route
key={path}
path={path}
......@@ -50,7 +50,6 @@ const App = () => {
<div className="row ">
<div className="col-1 d-none d-lg-block" >
{/* <!-- empty so far --> */}
</div>
{/* <div className="col-2 d-none d-lg-block">
<div className="sticky-top sidebar">
......
......@@ -33,7 +33,7 @@ class Page implements Base {
path: string | undefined;
component: React.FC | undefined;
header!: React.FC;
navlist: Array<string> | undefined;
navlist?: Array<string> | undefined;
}
const Pages: (Page | Folder)[] = [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment