Project Init

This commit is contained in:
Muluhabt
2026-05-29 15:23:46 +03:00
commit 2fbc557aac
67387 changed files with 6063341 additions and 0 deletions

21
node_modules/@nx/react/module-federation.js generated vendored Normal file
View File

@@ -0,0 +1,21 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.withModuleFederationForSSR = exports.withModuleFederation = void 0;
const webpack_1 = require("@nx/module-federation/webpack");
Object.defineProperty(exports, "withModuleFederation", { enumerable: true, get: function () { return webpack_1.withModuleFederation; } });
const webpack_2 = require("@nx/module-federation/webpack");
Object.defineProperty(exports, "withModuleFederationForSSR", { enumerable: true, get: function () { return webpack_2.withModuleFederationForSSR; } });
// Support for older generated code: `const withModuleFederation = require('@nx/react/module-federation')`
/**
* @deprecated Use `@nx/module-federation/webpack` instead. This will be removed in Nx v22.
*/
module.exports = webpack_1.withModuleFederation;
// Allow newer generated code to work: `const { withModuleFederation } = require(...)`;
/**
* @deprecated Use `@nx/module-federation/webpack` instead. This will be removed in Nx v22.
*/
module.exports.withModuleFederation = webpack_1.withModuleFederation;
/**
* @deprecated Use `@nx/module-federation/webpack` instead. This will be removed in Nx v22.
*/
module.exports.withModuleFederationForSSR = webpack_2.withModuleFederationForSSR;