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 2d94262 commit 4834b40Copy full SHA for 4834b40
CHANGELOG.md
@@ -12,6 +12,7 @@
12
* `pnpm: true` option in `app.js` is no longer breaking the application.
13
* Remove unused `vue-template-compiler` dependency.
14
* Prevent un-publishing the `@apostrophecms/global` doc and more generally all singletons.
15
+* Correct a race condition that can cause a crash at startup when custom `uploadfs` options are present in some environments.
16
17
## 4.8.0 (2024-10-03)
18
modules/@apostrophecms/asset/index.js
@@ -94,7 +94,7 @@ module.exports = {
94
...globalIcons
95
};
96
self.configureBuilds();
97
- self.initUploadfs();
+ await self.initUploadfs();
98
self.enableBrowserData();
99
100
const {
0 commit comments