path.js 374 B

123456789
  1. "use strict";
  2. /**
  3. * This module is for next.js server internal usage of path module.
  4. * It will use native path module for nodejs runtime.
  5. * It will use path-browserify polyfill for edge runtime.
  6. */ const path = process.env.NEXT_RUNTIME === 'edge' ? require('next/dist/compiled/path-browserify') : require('path');
  7. module.exports = path;
  8. //# sourceMappingURL=path.js.map