Replies: 8 comments 1 reply
-
@oxr463 I am unable to open P.S. I am unaware of how Gitlab pages work so I am not sure if there are multiple ways of deploying, a single recommended method, etc., thats why I'm asking. |
Beta Was this translation helpful? Give feedback.
-
Here is my GitLab CI/CD pipeline:
|
Beta Was this translation helpful? Give feedback.
-
This is |
Beta Was this translation helpful? Give feedback.
-
The problem appears to be due to this issue. @oxr463 could you please also comment the contents of |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
@oxr463 perhaps setting the project namespace resolves the issue? to the best of my (limited) understanding, you should set it to the repo name: import { configuration } from '@codedoc/core';
import { theme } from './theme';
export const config = /*#__PURE__*/configuration({
theme, // --> add the theme. modify `./theme.ts` for changing the theme.
dest: {
namespace: '<repo-name>',
},
page: {
favicon: '/favicon.png',
title: {
base: 'Foo' // --> the base title of your doc pages
}
}
}); |
Beta Was this translation helpful? Give feedback.
-
That fixed it:
|
Beta Was this translation helpful? Give feedback.
-
so I transferred this issue to Q&A section for future reference (if other people face the same issue). |
Beta Was this translation helpful? Give feedback.
-
This is from the browser console:
Note: foo is not the real project name.
The published site is missing js and styling due to this error.
Beta Was this translation helpful? Give feedback.
All reactions