Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 305 Bytes

static-files.md

File metadata and controls

13 lines (10 loc) · 305 Bytes

RAN!

Static Files (Images, Docs, Others...)

This info is copied from Next.js Doc Doc Link

From your code you can reference those files with /static/ URLs:

export default () => (
  <img src="/static/my-image.png" />
)