![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mets.corals.io/wp-content/plugins/foogallery/gutenberg/config/ |
/** * Paths * * Project related paths. */ const path = require( 'path' ); const fs = require( 'fs' ); // Make sure any symlinks in the project folder are resolved: const pluginDir = fs.realpathSync( process.cwd() ); const resolvePlugin = relativePath => path.resolve( pluginDir, relativePath ); // Config after eject: we're in ./config/ module.exports = { dotenv: resolvePlugin( '.env' ), pluginSrc: resolvePlugin( 'src' ), // Plugin src folder path. pluginBlocksJs: resolvePlugin( 'gutenberg/src/blocks.js' ), yarnLockFile: resolvePlugin( 'yarn.lock' ), pluginDist: resolvePlugin( '.' ), // We are in ./dist folder already so the path '.' resolves to ./dist/. };