astro-ghostcms/.pnpm-store/v3/files/0b/53bc984178336ac516601e72d47...

11 lines
263 B
Plaintext

/**
* Detect Electron renderer process, which is node, but we should
* treat as a browser.
*/
if (typeof process !== 'undefined' && process.type === 'renderer') {
module.exports = require('./browser.js');
} else {
module.exports = require('./node.js');
}