]> git.ipfire.org Git - thirdparty/vuejs/pinia.git/commitdiff
docs: fix broken link
authorEduardo San Martin Morote <posva13@gmail.com>
Fri, 9 Apr 2021 10:41:09 +0000 (12:41 +0200)
committerEduardo San Martin Morote <posva@users.noreply.github.com>
Fri, 9 Apr 2021 11:08:56 +0000 (13:08 +0200)
docs/core-concepts/state.md

index 3b457ca5501a329dc551349064e02828e7b0d231..4dbb55900f16497cfdb0cd21812194d3a3b6e464 100644 (file)
@@ -114,7 +114,7 @@ You can replace the whole state of a store by setting its `$state` property to a
 store.$state = { counter: 666, name: 'Paimon' }
 ```
 
-You can also replace the whole state of your application by changing the `state` of the `pinia` instance. This is used during [SSR for hydration](http://localhost:3000/ssr/#state-hydration).
+You can also replace the whole state of your application by changing the `state` of the `pinia` instance. This is used during [SSR for hydration](../ssr/#state-hydration).
 
 ```js
 pinia.state.value = {}