my blog https://overreacted.io
53
fork

Configure Feed

Select the types of activity you want to include in your feed.

style nits

+2 -2
+2 -2
public/the-two-reacts/index.md
··· 143 143 } 144 144 ``` 145 145 146 - None of this code needed to run on your computer--and indeed, *it couldn't* because your computer doesn't have my files. Let's check *when* this code ran: 146 + None of this code needed to run on your computer--and indeed *it couldn't* because your computer doesn't have my files. Let's check *when* this code ran: 147 147 148 148 ```js 149 149 <p className="text-purple-500 font-bold"> ··· 157 157 </p> 158 158 ``` 159 159 160 - Aha--that's exactly when I last deployed my blog to my static web hosting! My components run during the build process so they have full access to my posts. 160 + Aha--that's exactly when I last deployed my blog to my static web hosting! My components ran during the build process so they had full access to my posts. 161 161 162 162 **Running my components close to their data source lets them read their own data and preprocess it _before_ sending any of that information to your device.** 163 163