-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy pathindex.js
More file actions
102 lines (84 loc) · 3.67 KB
/
Copy pathindex.js
File metadata and controls
102 lines (84 loc) · 3.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
import { rmSync } from 'node:fs';
import path from 'node:path';
import { platforms } from './platforms.js';
/** @type {typeof import('./index.js').default} */
export default function (options) {
return {
name: '@sveltejs/adapter-static',
async adapt(builder) {
if (!options?.fallback && builder.config.router?.type !== 'hash') {
const dynamic_routes = builder.routes.filter((route) => route.prerender !== true);
if (dynamic_routes.length > 0 && options?.strict !== false) {
const prefix = path.relative('.', builder.config.files.routes);
const has_param_routes = builder.routes.some((route) => route.id.includes('['));
builder.log.error(
`\n@sveltejs/adapter-static: all routes must be fully prerenderable, but found the following routes that are dynamic:
${dynamic_routes.map((route) => ` - ${path.posix.join(prefix, route.id)}`).join('\n')}\n`
);
const options = [
'set the `fallback` option — see https://svelte.dev/docs/kit/single-page-apps#usage for more info.',
'add `export const prerender = true` to your root `+layout.js/.ts` or `+layout.server.js/.ts` file. This will try to prerender all pages.',
'add `export const prerender = true` to any `+server.js/ts` files that are not fetched by page `load` functions.'
];
if (has_param_routes || JSON.stringify(builder.config.prerender.entries) !== '["*"]') {
let option = 'adjust the `prerender.entries` config option';
if (has_param_routes)
option += ' (routes with parameters are not part of entry points by default)';
options.push(option);
}
options.push(
"pass `strict: false` to `adapter-static` to ignore this error. Only do this if you are sure you don't need the routes in question in your final app, as they will be unavailable. See https://github.com/sveltejs/kit/tree/main/packages/adapter-static#strict for more info."
);
builder.log(
`You have the following options:${options.map((o) => `\n - ${o}`).join('')}\n`
);
builder.log(
`If this doesn't help, you may need to use a different adapter. @sveltejs/adapter-static can only be used for sites that don't need a server for dynamic rendering, and can run on just a static file server.\n`
);
builder.log(`See https://svelte.dev/docs/kit/page-options#prerender for more details\n`);
const error = new Error('Encountered dynamic routes');
error.stack = '';
throw error;
}
}
const platform = platforms.find((platform) => platform.test());
if (platform) {
if (options) {
builder.log.warn(
`Detected ${platform.name}. Please remove adapter-static options to enable zero-config mode`
);
} else {
builder.log.info(`Detected ${platform.name}, using zero-config mode`);
}
}
const {
pages = 'build',
assets = pages,
fallback,
precompress
} = options ?? platform?.defaults ?? /** @type {import('./index.js').AdapterOptions} */ ({});
rmSync(assets, { force: true, recursive: true });
rmSync(pages, { force: true, recursive: true });
builder.generateEnvModule();
builder.writeClient(assets);
builder.writePrerendered(pages);
if (fallback) {
await builder.generateFallback(path.join(pages, fallback));
}
if (precompress) {
builder.log.minor('Compressing assets and pages');
if (pages === assets) {
await builder.compress(assets);
} else {
await Promise.all([builder.compress(assets), builder.compress(pages)]);
}
}
if (pages === assets) {
builder.log(`Wrote site to "${pages}"`);
} else {
builder.log(`Wrote pages to "${pages}" and assets to "${assets}"`);
}
if (!options) platform?.done(builder);
}
};
}