Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: further clarify and reinforce the performance impacts of single page apps (SPAs) #11637

Open
wants to merge 27 commits into
base: main
Choose a base branch
from
Open
Changes from 2 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
e58e6f2
docs: clarify that fallback page is generated
benmccann Jan 14, 2024
bc65081
Update documentation/docs/25-build-and-deploy/50-adapter-static.md
benmccann Jan 15, 2024
37617ec
Update documentation/docs/25-build-and-deploy/50-adapter-static.md
benmccann Jan 15, 2024
183cf2c
try to do a better job scaring users away from spa mode
benmccann Jan 15, 2024
f48548e
tweak
benmccann Jan 15, 2024
49ee634
update glossary
benmccann Jan 16, 2024
b0c5d01
Update documentation/docs/40-best-practices/05-performance.md
benmccann Jan 16, 2024
aa819b3
update aside
benmccann Jan 16, 2024
bb1f3a2
Merge branch 'fallback-docs' of github.com:sveltejs/kit into fallback…
benmccann Jan 16, 2024
7f585c7
update SEO wording
benmccann Jan 16, 2024
5c98637
update glossary to differentiate between SPAs used publicly vs intern…
benmccann Jan 16, 2024
0049a0c
address feedback
benmccann Jan 16, 2024
9be8ba5
Update documentation/docs/25-build-and-deploy/50-adapter-static.md
benmccann Jan 17, 2024
18fc6fd
clarify spa vs hybrid app
benmccann Jan 17, 2024
8578f4d
clarifications. recommend a page name other than index.html to avoid …
benmccann Jan 17, 2024
1459ded
try to shrink/tighten up content
benmccann Jan 25, 2024
7b7169f
Update documentation/docs/40-best-practices/05-performance.md
benmccann Jun 18, 2024
3a8518a
Update documentation/docs/40-best-practices/05-performance.md
benmccann Jun 18, 2024
96a9889
Merge branch 'main' into fallback-docs
eltigerchino Oct 22, 2024
a11d643
Update documentation/docs/25-build-and-deploy/50-adapter-static.md
benmccann Feb 10, 2025
904db79
Update documentation/docs/25-build-and-deploy/55-single-page-apps.md
benmccann Feb 10, 2025
912ceca
Update documentation/docs/25-build-and-deploy/55-single-page-apps.md
benmccann Feb 10, 2025
7db5356
Update documentation/docs/25-build-and-deploy/55-single-page-apps.md
benmccann Feb 10, 2025
1539be3
Update documentation/docs/40-best-practices/05-performance.md
benmccann Feb 10, 2025
dcf9b59
Update documentation/docs/60-appendix/60-glossary.md
benmccann Feb 10, 2025
be9134f
Update documentation/docs/60-appendix/60-glossary.md
benmccann Feb 10, 2025
e6ecfbe
Update documentation/docs/60-appendix/60-glossary.md
benmccann Feb 10, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ The directory to write static assets (the contents of `static`, plus client-side

### fallback

Specify a fallback page for [SPA mode](single-page-apps), e.g. `index.html` or `200.html` or `404.html`.
To create a [Single Page App](single-page-apps) you must specify the name of the fallback page generated by SvelteKit, which is used as the entry point for URLs that have not been prerendered. This is commonly `index.html` or `200.html`, but can vary depending on your deployment platform.

### precompress

Expand Down
Loading