Skip to content

Commit cd2711f

Browse files
authored
Merge pull request #349 from SAFE-Stack/remove-webpack-reference
Remove webpack reference
2 parents 1dbc681 + de273e0 commit cd2711f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/recipes/client-server/share-code.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# How Do I Share Code Types Between the Client and the Server?
2-
SAFE Stack makes it really simple and easy to share code between the client and the server, since both of them are written in F#. The client side is transpiled into JavaScript via webpack, whilst the server side is compiled down to .NET CIL. Serialization between both happens in the background, so you don't have to worry about it.
2+
SAFE Stack makes it really simple and easy to share code between the client and the server, since both of them are written in F#. The client side is transpiled into JavaScript by Fable, whilst the server side is compiled down to .NET CIL. Serialization between both happens in the background, so you don't have to worry about it.
33

44
---
55

66
## Types
7-
Lets say the you have the following type in `src/Server/Server.fs`:
7+
Let's say the you have the following type in `src/Server/Server.fs`:
88
```fsharp
99
type Customer =
1010
{ Id : Guid

0 commit comments

Comments
 (0)