@absolutejs/absolute 0.19.0-beta.661 → 0.19.0-beta.662
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +11 -3
- package/dist/index.js.map +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -181969,6 +181969,7 @@ init_pageMetadata();
|
|
|
181969
181969
|
init_resolveConvention();
|
|
181970
181970
|
var MS_PER_SECOND2 = 1000;
|
|
181971
181971
|
var DEFAULT_PORT2 = 3000;
|
|
181972
|
+
var MAX_STATIC_ROUTE_COUNT = Number.MAX_SAFE_INTEGER;
|
|
181972
181973
|
var buildPrewarmDirs = (config) => {
|
|
181973
181974
|
const dirs = [];
|
|
181974
181975
|
if (config.svelteDirectory) {
|
|
@@ -182099,9 +182100,11 @@ var prepareDev = async (config, buildDir) => {
|
|
|
182099
182100
|
uuidCachePath: config.dev?.devtools?.uuidCachePath
|
|
182100
182101
|
})).use(imageOptimizer2(config.images, buildDir)).use(staticPlugin({
|
|
182101
182102
|
assets: buildDir,
|
|
182103
|
+
alwaysStatic: true,
|
|
182102
182104
|
directive: "no-cache",
|
|
182103
182105
|
maxAge: null,
|
|
182104
|
-
prefix: ""
|
|
182106
|
+
prefix: "",
|
|
182107
|
+
staticLimit: MAX_STATIC_ROUTE_COUNT
|
|
182105
182108
|
})).use(hmrPlugin).use(createSitemapPlugin(buildDir, config.sitemap)).use(createNotFoundPlugin());
|
|
182106
182109
|
return {
|
|
182107
182110
|
absolutejs,
|
|
@@ -182160,7 +182163,12 @@ var prepare = async (configOrPath) => {
|
|
|
182160
182163
|
setConventions(conventions2);
|
|
182161
182164
|
}
|
|
182162
182165
|
const { staticPlugin } = await import("@elysiajs/static");
|
|
182163
|
-
const staticFiles = staticPlugin({
|
|
182166
|
+
const staticFiles = staticPlugin({
|
|
182167
|
+
assets: buildDir,
|
|
182168
|
+
alwaysStatic: true,
|
|
182169
|
+
prefix: "",
|
|
182170
|
+
staticLimit: MAX_STATIC_ROUTE_COUNT
|
|
182171
|
+
});
|
|
182164
182172
|
const prerenderDir = join24(buildDir, "_prerendered");
|
|
182165
182173
|
const prerenderMap = loadPrerenderMap(prerenderDir);
|
|
182166
182174
|
if (prerenderMap.size > 0) {
|
|
@@ -188795,5 +188803,5 @@ export {
|
|
|
188795
188803
|
ANGULAR_INIT_TIMEOUT_MS
|
|
188796
188804
|
};
|
|
188797
188805
|
|
|
188798
|
-
//# debugId=
|
|
188806
|
+
//# debugId=CDE81E54B75AFAE164756E2164756E21
|
|
188799
188807
|
//# sourceMappingURL=index.js.map
|