When the name of file is not a english it makes error.
When title is not english, I'm using the Korean, It occurs error can't render. It can't handle such as "쿠버네티스를 공부하는 법.mdx". Like when it's not english then encoding happens and the automatic mdx engine can't read and create article. http://localhost:3000/SLAM/%EB%B8%94%EB%A1%9C%EA%B7%B8
Nice to meet you, Nextra user from Korea!
I built Nextra pages with files in languages other than English using the following method:
- First, before the Nextra build, I use a Node script during the
prebuildphase to encode the file names in the path using JavaScript’sencodeURIComponent. - Then, I build Nextra.
I confirmed through testing that this method successfully loads pages in Nextra. 😃
@ATeals pr welcome for v3
I find this feature useful, why isn't it supported?
This is not a Nextra issue 🤦
URLs are ASCII. If your filename contains characters that are not ASCII characters than you can't use it for a URL.
URLs can only be sent over the Internet using the ASCII character-set.