Nested pages have no absolute path reference to the static folder.
If page is not into top-level into pages folder I should replace all static folder references like with the relative path.
Create nested pages structure inside pages folder like
/home
--/view
Inside view page include for example
You need to reconfigure your custom configuration file/url loaders to handle this, or use the top-level syntax.
Normally, your static assets that were not imported via loader should be referenced like so:
<img src="/static/someimage.jpg />
(note the leading /)
Most helpful comment
You need to reconfigure your custom configuration file/url loaders to handle this, or use the top-level syntax.
Normally, your static assets that were not imported via loader should be referenced like so:
(note the leading
/)