mirror of
https://github.com/strapi/strapi.git
synced 2025-10-01 03:12:48 +00:00
8 lines
216 B
JavaScript
8 lines
216 B
JavaScript
// TODO: this condition might change
|
|
|
|
const fs = require('fs-extra');
|
|
const path = require('path');
|
|
const appAdminPath = path.join(__dirname, 'admin');
|
|
|
|
module.exports = fs.existsSync(path.join(appAdminPath, 'ee'));
|