Skip to content

Commit af9c5c8

Browse files
committed
Merge branch 'master' into imgfolder
2 parents 0f369bc + 50826e6 commit af9c5c8

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

docs/recipes/upgrading/v4-to-v5.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
1. Overwrite your `.editorconfig` file [from here](https://raw.githubusercontent.com/SAFE-Stack/SAFE-template/master/Content/default/.editorconfig).
1111

1212
1. **Migrate all dependencies to .NET 8**.
13-
1. Overwriite your `global.json` file [from here](https://raw.githubusercontent.com/SAFE-Stack/SAFE-template/master/Content/default/global.json).
13+
1. Overwrite your `global.json` file [from here](https://raw.githubusercontent.com/SAFE-Stack/SAFE-template/master/Content/default/global.json).
1414

1515
1. Update each of your project files to target .NET 8.
1616

docs/v4-recipes/developing-and-testing/debug-safe-app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ VS Code allows "full stack" debugging i.e. both the client and server. Prerequis
6767

6868
* **Install** either [Google Chrome](https://www.google.com/chrome/) or [Microsoft Edge](https://www.microsoft.com/en-us/edge): Enables client-side debugging.
6969
* **Configure your browser** with the following extensions:
70-
* [Redux Dev Tools](https://chrome.google.com/webstore/detail/redux-devtools/lmhkpmbekcpmknklioeibfkpmmfibljd?hl=en): Provides improved debugging support in Chrome with Elmish and access to Redux debugging.
71-
* [React Developer Tools](https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi/related): Provides access to React debugging in Chrome.
70+
* [Redux Dev Tools](https://chromewebstore.google.com/detail/redux-devtools/lmhkpmbekcpmknklioeibfkpmmfibljd?hl=en): Provides improved debugging support in Chrome with Elmish and access to Redux debugging.
71+
* [React Developer Tools](https://chromewebstore.google.com/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi): Provides access to React debugging in Chrome.
7272
* **Configure VS Code** with the following extensions:
7373
* [Ionide](https://marketplace.visualstudio.com/items?itemName=Ionide.Ionide-fsharp): Provides F# support to Code.
7474
* [C#](https://marketplace.visualstudio.com/items?itemName=ms-vscode.csharp): Provides .NET Core debugging support.

mkdocs.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ markdown_extensions:
2929
extra_css:
3030
- https://unpkg.com/[email protected]/dist/mermaid.css
3131
extra_javascript:
32-
- https://unpkg.com/mermaid@8.7.0/dist/mermaid.min.js
32+
- https://unpkg.com/mermaid@10.6.1/dist/mermaid.min.js
3333

3434
extra:
3535
social:
@@ -141,13 +141,11 @@ nav:
141141
- Create a data module using SQLProvider SQL Server SSDT: "v4-recipes/storage/use-sqlprovider-ssdt.md"
142142
- UI:
143143
- Add FontAwesome support: "v4-recipes/ui/add-fontawesome.md"
144-
- Add Stylesheet support: "v4-recipes/ui/add-style.md"
145144
- Add Bulma support: "v4-recipes/ui/add-bulma.md"
146145
- Use different Bulma Themes: "v4-recipes/ui/use-different-bulma-themes.md"
147146
- Remove Bulma: "v4-recipes/ui/remove-bulma.md"
148147
- Add Tailwind support: "v4-recipes/ui/add-tailwind.md"
149148
- Add daisyUI support: "v4-recipes/ui/add-daisyui.md"
150-
- Add Feliz support: "recipes/ui/add-feliz.md"
151149
- Migrate from a CDN stylesheet to an NPM package: "v4-recipes/ui/cdn-to-npm.md"
152150
- Add routing with state shared between pages: "v4-recipes/ui/add-routing.md"
153151
- Add routing with separate models per page: "v4-recipes/ui/add-routing-with-separate-models.md"
@@ -156,9 +154,7 @@ nav:
156154
- Import a JavaScript module: "v4-recipes/javascript/import-js-module.md"
157155
- Add Support for a Third Party React Library: "v4-recipes/javascript/third-party-react-package.md"
158156
- Package Management:
159-
- Add an NPM package to the Client: "v4-recipes/package-management/add-npm-package-to-client.md"
160157
- Add a NuGet package to the Server: "v4-recipes/package-management/add-nuget-package-to-server.md"
161-
- Add a NuGet package to the Client: "v4-recipes/package-management/add-nuget-package-to-client.md"
162158
- Migrate to Paket from NuGet: "v4-recipes/package-management/migrate-to-paket.md"
163159
- Migrate to NuGet from Paket: "v4-recipes/package-management/migrate-to-nuget.md"
164160
- Sync NuGet and NPM Packages: "v4-recipes/package-management/sync-nuget-and-npm-packages.md"

0 commit comments

Comments
 (0)