/opt/canhelp/node_modules/next/dist/esm/build/webpack/loaders
NameSizeModeActions
css-loader/-0755rm
devtool/-0755rm
lightningcss-loader/-0755rm
metadata/-0755rm
next-app-loader/-0755rm
next-edge-app-route-loader/-0755rm
next-edge-ssr-loader/-0755rm
next-flight-loader/-0755rm
next-font-loader/-0755rm
next-image-loader/-0755rm
next-route-loader/-0755rm
next-style-loader/-0755rm
postcss-loader/-0755rm
resolve-url-loader/-0755rm
empty-loader.js1140644editdlrm
empty-loader.js.map3740644editdlrm
error-loader.js10280644editdlrm
error-loader.js.map16730644editdlrm
get-module-build-info.js2760644editdlrm
get-module-build-info.js.map19320644editdlrm
modularize-import-loader.js8810644editdlrm
modularize-import-loader.js.map17030644editdlrm
next-barrel-loader.js99640644editdlrm
next-barrel-loader.js.map155070644editdlrm
next-client-pages-loader.js10070644editdlrm
next-client-pages-loader.js.map19040644editdlrm
next-edge-function-loader.js16500644editdlrm
next-edge-function-loader.js.map32160644editdlrm
next-error-browser-binary-loader.js5050644editdlrm
next-error-browser-binary-loader.js.map9130644editdlrm
next-flight-action-entry-loader.js7660644editdlrm
next-flight-action-entry-loader.js.map19410644editdlrm
next-flight-client-entry-loader.js17600644editdlrm
next-flight-client-entry-loader.js.map41450644editdlrm
next-flight-client-module-loader.js19820644editdlrm
next-flight-client-module-loader.js.map34360644editdlrm
next-flight-css-loader.js17050644editdlrm
next-flight-css-loader.js.map30520644editdlrm
next-flight-server-reference-proxy-loader.js11280644editdlrm
next-flight-server-reference-proxy-loader.js.map18690644editdlrm
next-invalid-import-error-loader.js3620644editdlrm
next-invalid-import-error-loader.js.map7210644editdlrm
next-metadata-image-loader.js55820644editdlrm
next-metadata-image-loader.js.map97740644editdlrm
next-metadata-route-loader.js87140644editdlrm
next-metadata-route-loader.js.map136960644editdlrm
next-middleware-asset-loader.js7180644editdlrm
next-middleware-asset-loader.js.map15150644editdlrm
next-middleware-loader.js15600644editdlrm
next-middleware-loader.js.map35850644editdlrm
next-middleware-wasm-loader.js6610644editdlrm
next-middleware-wasm-loader.js.map14680644editdlrm
next-root-params-loader.js48620644editdlrm
next-root-params-loader.js.map85580644editdlrm
next-swc-loader.js90730644editdlrm
next-swc-loader.js.map150380644editdlrm
utils.js29630644editdlrm
utils.js.map58210644editdlrm
Edit: /opt/canhelp/node_modules/next/dist/esm/build/webpack/loaders/next-flight-css-loader.js (1705B)
/** * For server-side CSS imports, we need to ignore the actual module content but * still trigger the hot-reloading diff mechanism. So here we put the content * inside a comment. */ import crypto from 'crypto'; const NextServerCSSLoader = function(content) { this.cacheable && this.cacheable(); const options = this.getOptions(); let isCSSModule = options.cssModules; // Only add the checksum during development. if (process.env.NODE_ENV !== 'production') { // This check is only for backwards compatibility. // TODO: Remove this in the next major version (next 14) if (isCSSModule === undefined) { this.emitWarning(Object.defineProperty(new Error("No 'cssModules' option was found for the next-flight-css-loader plugin."), "__NEXT_ERROR_CODE", { value: "E8", enumerable: false, configurable: true })); isCSSModule = this.resourcePath.match(/\.module\.(css|sass|scss)$/) !== null; } const checksum = crypto.createHash('sha1').update(typeof content === 'string' ? Buffer.from(content) : content).digest().toString('hex').substring(0, 12); if (isCSSModule) { return `\ ${content} module.exports.__checksum = ${JSON.stringify(checksum)} `; } // Server CSS imports are always available for HMR, so we attach // `module.hot.accept()` to the generated module. const hmrCode = 'if (module.hot) { module.hot.accept() }'; return `\ export default ${JSON.stringify(checksum)} ${hmrCode} `; } return content; }; export default NextServerCSSLoader; //# sourceMappingURL=next-flight-css-loader.js.map