Embedding a dynamic app in a jekyll blog

Viewed 100

I am trying to embed a dynamic (Elm) app that has it's own routing into a jekyll blog. I load the app by adding a page in subdirectory that loads html that includes the javascript file holding the app.

However, the app has certain links that when clicked navigate to a path /some/path/123, where 123 is an id. The app then makes a request to fetch the relevant data and displays it.

This is where I run into trouble because Jekyll intercepts these redirects and the server displays a Not Found Error because there is no page setup for that path. Does anyone know how I might get around this problem? Otherwise, I suppose I will server the app on a subdomain.

1 Answers
Related