Referring to this line in Page/index.js:
// Each source path will only contain 1 copy of build/re-build page (the latest one)
pageVueServerRenderer.pageEntries[this.pageConfig.soucePath] = builtPage;
Because of a typo (sourcePath->soucePath), pageEntries in PageVueServerRenderer always only has one entry (with the key undefined). However, live reloading still seems to work: making changes to one or multiple Vue source files triggers live reload as expected. Same for md files. I haven't been able to find any unexpected behaviour caused by this line.
Instead of fixing the typo, I'm wondering if it's possible to remove this line entirely, or simplify the logic related to it?
Referring to this line in Page/index.js:
Because of a typo (sourcePath->soucePath),
pageEntriesin PageVueServerRenderer always only has one entry (with the keyundefined). However, live reloading still seems to work: making changes to one or multiple Vue source files triggers live reload as expected. Same for md files. I haven't been able to find any unexpected behaviour caused by this line.Instead of fixing the typo, I'm wondering if it's possible to remove this line entirely, or simplify the logic related to it?