Files
Foundry-VTT-Docker/resources/app/main.js

11 lines
271 B
JavaScript
Raw Normal View History

2025-01-04 00:34:03 +01:00
#!/usr/bin/env node
/**
* Bootstrap the Node.js loader to support ESM imports
* Required until https://github.com/electron/electron/issues/21457#issuecomment-815770296 is resolved
* @returns {Promise<void>}
*/
(async function() {
await import("./main.mjs");
})();