NextJS /Typescript — how to import md file

Fred Wong
fredwong-it
Published in
Nov 8, 2022

We used the markdown for the Terms and Conditions page and planned to get the content from .md file directly instead of exporting string from .ts file. However, we can’t import the content from .md file directly like .ts file.

2 Blockers

  • content issue: not able to import content from .md file
  • typescript issue (type declaration)

Solution

  • this solve the import content issue
  • this solve the Typescript type declaration issue

Reference

--

--