What are the HTML links generated by Gatsby.js?

Asked 1 years ago, Updated 1 years ago, 111 views

I'd like to make a page transition between the HTMLs that appear in the public folder with the gatsby build command. When operating locally, the link becomes a relative path like file://pandas-and-bananas/ and cannot be opened.
Please let me know how I can output it as a link that works locally because I have no knowledge of HTML or JavaScript.
Thank you for your cooperation.

javascript gatsby

2022-09-30 21:46

1 Answers

You will need to start the web server

If Gatsby is included, I think you are using npm, so you may want to use serve.

npmi-g serve

After the installation is complete, the serve command is available.Enter and exit the cd command in the public directory to which Gatsby outputs, and run serve.

By default, you can check it by browsing to http://localhost:5000.


2022-09-30 21:46

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.