Hi,
I noticed that the watcher doesn’t work with .md files.
After every change, I have to delete the .intlayer folder and restart the server.
Here's my code:
import {type Dictionary, t, file, md} from 'intlayer';
const document = file('./document.md');
const pageContent = {
key: 'legal.company',
content: t({
ru: {
document: md(document)
}
})
} satisfies Dictionary;
export default pageContent;
Hi,
I noticed that the watcher doesn’t work with .md files.
After every change, I have to delete the
.intlayerfolder and restart the server.Here's my code: