We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d975660 commit 7b0a3fdCopy full SHA for 7b0a3fd
src/loaders/markdown/index.ts
@@ -148,6 +148,10 @@ export default function mdLoader(this: any, content: string) {
148
const opts: IMdLoaderOptions = this.getOptions();
149
const cb = this.async();
150
151
+ // disable cache for avoid onResolveDemos and onResolveAtomMeta not work
152
+ // and dumi already save cache by self, loader cache is unnecessary
153
+ this.cacheable(false);
154
+
155
const cache = getCache('md-loader');
156
// format: {path:mtime:loaderOpts}
157
const baseCacheKey = [
0 commit comments