Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rauchg committed Nov 21, 2023
1 parent 7e56db9 commit a9bdadb
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 14 deletions.
2 changes: 0 additions & 2 deletions app/(post)/2020/2019-in-review/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,6 @@ To achieve platform fidelity, it's obvious one must have access to the platform

It has nothing to do with performance or JS and HTML, and everything to do with being altogether unable to deliver on the standards of what a *real* app can do on the platform^<Ref id="5" />.

<Tweet id="1199843171431256066" caption="Native performance with JS + native code" />

A React Native app can achieve full platform fidelity (it can exhibit great performance with [solid engineering](https://blog.discordapp.com/how-discord-achieves-native-ios-performance-with-react-native-390c84dcd502) while being unconstrained in API capabilities). Crucially, like Electron, it offers a cohesive development experience, a universal programming language, a shared module and component system, seamless updates and faster deployments, with both ~~macOS~~ iOS and ~~[Windows](https://www.theverge.com/2019/6/24/18715202/microsoft-bill-gates-android-biggest-mistake-interview)~~ Android support to boot.

<Tweet id="1105876480930734086" caption="While SwiftUI is certainly exciting, RN, like Electron, has a tremendous economic advantage" />
Expand Down
30 changes: 25 additions & 5 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,31 @@ module.exports = withMDX({
swcMinify: true,
reactStrictMode: true,
images: {
domains: [
"pbs.twimg.com",
"abs.twimg.com",
"m.media-amazon.com",
"images-na.ssl-images-amazon.com",
remotePatterns: [
{
protocol: "https",
hostname: "pbs.twimg.com",
port: "",
pathname: "/**",
},
{
protocol: "https",
hostname: "abs.twimg.com",
port: "",
pathname: "/**",
},
{
protocol: "https",
hostname: "m.media-amazon.com",
port: "",
pathname: "/**",
},
{
protocol: "https",
hostname: "images-na.ssl-images-amazon.com",
port: "",
pathname: "/**",
},
],
},
headers() {
Expand Down
8 changes: 1 addition & 7 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 comment on commit a9bdadb

@vercel
Copy link

@vercel vercel bot commented on a9bdadb Nov 21, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

blog – ./

blog-rauchg.vercel.app
blog-git-main-rauchg.vercel.app
rauchg.com
www.rauchg.com

Please sign in to comment.