You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
281 B

const isStorybook = !process.mainModule
const isRunningInAsar = !isStorybook && process.mainModule.filename.indexOf('app.asar') !== -1
export default (__DEV__ && !isStorybook
? __static
: isRunningInAsar ? __dirname.replace(/app\.asar$/, 'static') : `${__dirname}/../static`)