Hiya blokes
I am a teacher and have many courses written in Jupyter notebooks and markdown, and for that reason I ended up using mystmd to produce course materials
I know how to publish on GH Pages (see below for details); I am currently trying to host the same content on vercel, as per mystmd’s documentation here
mystmd is not among the supported frameworks; fair enough !
however I have tried to manually fill the various build settings
the build seems to trigger allright
but I am consistently ending up with a 404 page that I don’t know how to solve..
I could use some help to get this right thanks in advance
here are my current build settings
for reference:
here is the toy project currently published on GH Pages, and that I use as a test for this move:
the GH repo is here GitHub - flotpython/jupyterlab-examples
and the resulting site on Pages is here
the recipe to publish this onto GH pages is
# NOTE THAT in addition to this file, you need to check on github.com
# - enable github pages (select deploy from a branch)
# - go to the Settings -> Environments tab
# then select the 'github-pages' environment
# and make sure the branch of interest (here main) is allowed in the 'Branch protection rules' area
name: Deploy MyST to GitHub Pages
on:
# Allows manual trigger
workflow_dispatch:
push:
branches:
- main
# the following sets permissions of the GITHUB_TOKEN
# to allow deployment to GitHub Pages
permissions:
contents: read
This file has been truncated. show original
system
(system)
April 27, 2025, 1:29pm
2
There’s another community post with 404 debugging tips that might be helpful. Please give these solutions a try and let us know how it goes.
Sometimes things don’t go as expected when deploying a website. If you see a 404 on your site, that means the page or resource couldn’t be found.
There are many possible causes, and the absence of something can be tricky debug if you don’t know where to look. Here are some things you can do to find the cause and fix it.
Debugging Tips
Check the error code
If you see a mostly white screen with 404: NOT_FOUND along with a Code and and ID then you can click the blue info box below the error deta…
A human should be around soon to offer more advice. But you can also get helpful information quickly by asking v0 .
system
(system)
Closed
July 26, 2025, 1:30pm
3
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.