We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ad78ca commit 1ac93fdCopy full SHA for 1ac93fd
build.mjs
@@ -219,6 +219,10 @@ async function buildDocs() {
219
// Create docs directory if it doesn't exist
220
ensureDir('docs');
221
222
+ // Create .nojekyll file to prevent GitHub Pages from using Jekyll
223
+ console.log('Creating .nojekyll file...');
224
+ fs.writeFileSync(path.join('docs', '.nojekyll'), '');
225
+
226
// Remove existing repos directory and create a new one
227
deleteDir('repos');
228
ensureDir('repos');
0 commit comments