Initial boiler plate project
This commit is contained in:
1
node_modules/next/dist/shared/lib/isomorphic/path.d.ts
generated
vendored
Normal file
1
node_modules/next/dist/shared/lib/isomorphic/path.d.ts
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
export { default } from 'path'
|
||||
14
node_modules/next/dist/shared/lib/isomorphic/path.js
generated
vendored
Normal file
14
node_modules/next/dist/shared/lib/isomorphic/path.js
generated
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
/**
|
||||
* This module is for next.js server internal usage of path module.
|
||||
* It will use native path module for nodejs runtime.
|
||||
* It will use path-browserify polyfill for edge runtime.
|
||||
*/ "use strict";
|
||||
let path;
|
||||
if (process.env.NEXT_RUNTIME === "edge") {
|
||||
path = require("next/dist/compiled/path-browserify");
|
||||
} else {
|
||||
path = require("path");
|
||||
}
|
||||
module.exports = path;
|
||||
|
||||
//# sourceMappingURL=path.js.map
|
||||
1
node_modules/next/dist/shared/lib/isomorphic/path.js.map
generated
vendored
Normal file
1
node_modules/next/dist/shared/lib/isomorphic/path.js.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"sources":["../../../../src/shared/lib/isomorphic/path.js"],"names":["path","process","env","NEXT_RUNTIME","require","module","exports"],"mappings":"AAAA;;;;CAIC;AACD,IAAIA;AAEJ,IAAIC,QAAQC,GAAG,CAACC,YAAY,KAAK,QAAQ;IACvCH,OAAOI,QAAQ;AACjB,OAAO;IACLJ,OAAOI,QAAQ;AACjB;AAEAC,OAAOC,OAAO,GAAGN"}
|
||||
Reference in New Issue
Block a user