-
-
Notifications
You must be signed in to change notification settings - Fork 97
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix manifest URL missing base #237
Fix manifest URL missing base #237
Conversation
Thank you for the PR @j-maas! It would be nice to get a test around this to make sure this continues to work in the future. Maybe we can add another diff test similar to the escaping example. The way that test works is it just runs The script is like this: https://github.com/j-maas/elm-pages/blob/863e0318a876a5b2166d28543b1de5561f40a544/examples/escaping/package.json#L7. If that sounds good, we can
|
Awesome test setup! I noticed that you have tried to un-gitignore the .html files (https://github.com/dillonkearns/elm-pages/blob/master/examples/escaping/.gitignore#L4). It seems that this has not the desired effect.1 Instead, when you force-commit files, changes to them will actually be picked up without needing to add any rule to the .gitignore. Is that something that you want me to apply to the other examples as well? That is, remove the obsolete .gitignore rule there? Footnotes
|
Adding this example also demonstrates the issue that #234 solves: The index page is not rendered correctly. |
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width,initial-scale=1"> | ||
<script type="module"> | ||
import userInit from"\base-path\index.js"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, yes! Didn't even notice it. 😅
Thanks so much @j-maas! 🙏 |
Thank you for helping me out with this! 😊 |
No description provided.