📚 Documentação inicial do ALETHEIA
- MANUAL-PRODUTO.md: Manual do usuário final - MANUAL-VENDAS.md: Estratégia comercial e vendas - MANUAL-TECNICO.md: Infraestrutura e deploy - README.md: Visão geral do projeto
This commit is contained in:
16
frontend/.next/standalone/node_modules/next/dist/export/helpers/is-dynamic-usage-error.js
generated
vendored
Normal file
16
frontend/.next/standalone/node_modules/next/dist/export/helpers/is-dynamic-usage-error.js
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "isDynamicUsageError", {
|
||||
enumerable: true,
|
||||
get: function() {
|
||||
return isDynamicUsageError;
|
||||
}
|
||||
});
|
||||
const _hooksservercontext = require("../../client/components/hooks-server-context");
|
||||
const _bailouttocsr = require("../../shared/lib/lazy-dynamic/bailout-to-csr");
|
||||
const _isnavigationsignalerror = require("./is-navigation-signal-error");
|
||||
const isDynamicUsageError = (err)=>(0, _hooksservercontext.isDynamicServerError)(err) || (0, _bailouttocsr.isBailoutToCSRError)(err) || (0, _isnavigationsignalerror.isNavigationSignalError)(err);
|
||||
|
||||
//# sourceMappingURL=is-dynamic-usage-error.js.map
|
||||
15
frontend/.next/standalone/node_modules/next/dist/export/helpers/is-navigation-signal-error.js
generated
vendored
Normal file
15
frontend/.next/standalone/node_modules/next/dist/export/helpers/is-navigation-signal-error.js
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "isNavigationSignalError", {
|
||||
enumerable: true,
|
||||
get: function() {
|
||||
return isNavigationSignalError;
|
||||
}
|
||||
});
|
||||
const _notfound = require("../../client/components/not-found");
|
||||
const _redirect = require("../../client/components/redirect");
|
||||
const isNavigationSignalError = (err)=>(0, _notfound.isNotFoundError)(err) || (0, _redirect.isRedirectError)(err);
|
||||
|
||||
//# sourceMappingURL=is-navigation-signal-error.js.map
|
||||
24
frontend/.next/standalone/node_modules/next/dist/export/utils.js
generated
vendored
Normal file
24
frontend/.next/standalone/node_modules/next/dist/export/utils.js
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "hasCustomExportOutput", {
|
||||
enumerable: true,
|
||||
get: function() {
|
||||
return hasCustomExportOutput;
|
||||
}
|
||||
});
|
||||
function hasCustomExportOutput(config) {
|
||||
// In the past, a user had to run "next build" to generate
|
||||
// ".next" (or whatever the distDir) followed by "next export"
|
||||
// to generate "out" (or whatever the outDir). However, when
|
||||
// "output: export" is configured, "next build" does both steps.
|
||||
// So the user-configured distDir is actually the outDir.
|
||||
// We'll do some custom logic when meeting this condition.
|
||||
// e.g.
|
||||
// Will set config.distDir to .next to make sure the manifests
|
||||
// are still reading from temporary .next directory.
|
||||
return config.output === "export" && config.distDir !== ".next";
|
||||
}
|
||||
|
||||
//# sourceMappingURL=utils.js.map
|
||||
Reference in New Issue
Block a user