Skip to content

Commit eda7f68

Browse files
committed
docs: fix 1.14.0 blog post links and version
1 parent 854fbd0 commit eda7f68

File tree

2 files changed

+3
-8
lines changed
  • packages/docs/src/routes/(blog)

2 files changed

+3
-8
lines changed

packages/docs/src/routes/(blog)/blog/(articles)/qwik-1-14-preloader/index.mdx

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,11 @@ import serviceWorkerRegistrationPenalty from './service-worker-registration-pena
2222

2323
We’re super excited to announce the release of Qwik 1.14.0, our most fundamental update to Qwik since the release of 1.0.0!
2424

25-
Here is how you can download it:
26-
```json
27-
"@builder.io/qwik": "~1.14.0",
28-
"@builder.io/qwik-city": "~1.14.0",
29-
"eslint-plugin-qwik": "~1.14.0",
30-
```
25+
You can try it out on a new Qwik project with `npm create qwik@latest` or update your existing project with `npm i @builder.io/qwik@latest @builder.io/qwik-city@latest eslint-plugin-qwik@latest`.
3126

3227
## A Qwik recap
3328

34-
One of the core features that makes Qwik so... well... quick... is what we call “**Javascript Streaming**” – the unique ability to execute a part of the code as soon as it is ready, before all the code has been downloaded – speeding up your website’s [TTI (Time To Interactive)]([https://developer.mozilla.org/en-US/docs/Glossary/Time_to_interactive](https://developer.mozilla.org/en-US/docs/Glossary/Time_to_interactive)) similarly to how [video streaming]([https://www.cloudflare.com/learning/video/what-is-buffering/](https://www.cloudflare.com/learning/video/what-is-buffering/)) is significantly faster than downloading an entire video and then playing it thanks to buffering and on demand delivery.
29+
One of the core features that makes Qwik so... well... quick... is what we call “**Javascript Streaming**” – the unique ability to execute a part of the code as soon as it is ready, before all the code has been downloaded – speeding up your website’s [TTI (Time To Interactive)](https://developer.mozilla.org/en-US/docs/Glossary/Time_to_interactive) similarly to how [video streaming](https://www.cloudflare.com/learning/video/what-is-buffering/) is significantly faster than downloading an entire video and then playing it thanks to buffering and on demand delivery.
3530

3631
This mechanism is first enabled at build-time thanks to the [Qwik optimizer](https://qwik.dev/docs/advanced/optimizer/#optimizer), which looks for $ signs and splits your application code into smaller pieces (called “segments”). Then the bundler ([Rollup](https://rollupjs.org/)) groups these segments into small javascript files (called “bundles”) that hold related segments together.
3732

packages/docs/src/routes/(blog)/data.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ type BlogArticle = {
2424

2525
export const blogArticles: BlogArticle[] = [
2626
{
27-
title: 'the Preloader',
27+
title: 'Introducing the Qwik Preloader',
2828
image: preloaderImage,
2929
path: '/blog/qwik-1-14-preloader/',
3030
tags: ['Qwik'],

0 commit comments

Comments
 (0)