Files
vercel_dashboard_example/.pnpm-store/v11/files/ee/8b2a23268077dfc484ed0ea6c903f7ac8f7567bd2127ad1a1ebc7fb99bd49e06c4289aacd580f1ce8ce5468c9ce1bb8a68c29a9b3115598597d1fa9fed7977
T
2026-05-12 14:53:15 +00:00

22 lines
632 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, /**
* Depending on if Rspack is active or not, returns the appropriate set of
* webpack-compatible api.
*
* @returns webpack bundler
*/ "default", {
enumerable: true,
get: function() {
return getWebpackBundler;
}
});
const _webpack = require("next/dist/compiled/webpack/webpack");
const _getrspack = require("./get-rspack");
function getWebpackBundler() {
return process.env.NEXT_RSPACK ? (0, _getrspack.getRspackCore)() : _webpack.webpack;
}
//# sourceMappingURL=get-webpack-bundler.js.map