-
For some reason when I make build and then export our nextJS code in lesson 10 it doesnt work properly. I get html but CSS and JS are not loaded, with errors like this.
it seems like its trying to load assets directly from ipfs root and not ipfs/hash/ |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
I managed to solve it with this added to next.config.js by default seems it doesn't work without it. Wondering if someone else has a different experience.
|
Beta Was this translation helpful? Give feedback.
I managed to solve it with this added to next.config.js by default seems it doesn't work without it. Wondering if someone else has a different experience.
module.exports = { assetPrefix: "./" };