Skip to content

Commit f027613

Browse files
committed
translate translate react compiler page
1 parent f9bc792 commit f027613

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/content/learn/react-compiler.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ Derleyici ses analizi için girdi kaynak bilgisine ihtiyaç duyduğundan `babel-
254254

255255
### Vite {/*usage-with-vite*/}
256256

257-
If you use Vite, you can add the plugin to vite-plugin-react:
257+
Vite kullanıyorsanız, eklentiyi vite-plugin-react'e ekleyebilirsiniz:
258258

259259
```js {10}
260260
// vite.config.js
@@ -278,10 +278,10 @@ export default defineConfig(() => {
278278

279279
### Next.js {/*usage-with-nextjs*/}
280280

281-
Please refer to the [Next.js docs](https://nextjs.org/docs/app/api-reference/next-config-js/reactCompiler) for more information.
281+
Daha fazla bilgi için lütfen [Next.js docs](https://nextjs.org/docs/app/api-reference/next-config-js/reactCompiler) adresine bakın.
282282

283283
### Remix {/*usage-with-remix*/}
284-
Install `vite-plugin-babel`, and add the compiler's Babel plugin to it:
284+
`vite-plugin-babel` yükleyin ve derleyicinin Babel eklentisini buna ekleyin:
285285

286286
<TerminalBlock>
287287
npm install vite-plugin-babel
@@ -299,7 +299,7 @@ export default defineConfig({
299299
babel({
300300
filter: /\.[jt]sx?$/,
301301
babelConfig: {
302-
presets: ["@babel/preset-typescript"], // if you use TypeScript
302+
presets: ["@babel/preset-typescript"], // TypeScript kullanıyorsanız
303303
plugins: [
304304
["babel-plugin-react-compiler", ReactCompilerConfig],
305305
],
@@ -311,11 +311,11 @@ export default defineConfig({
311311

312312
### Webpack {/*usage-with-webpack*/}
313313

314-
A community Webpack loader is [now available here](https://github.com/SukkaW/react-compiler-webpack).
314+
Bir topluluk Webpack yükleyicisi [artık burada mevcut](https://github.com/SukkaW/react-compiler-webpack).
315315

316316
### Expo {/*usage-with-expo*/}
317317

318-
Please refer to [Expo's docs](https://docs.expo.dev/guides/react-compiler/) to enable and use the React Compiler in Expo apps.
318+
Expo uygulamalarında React Derleyicisini etkinleştirmek ve kullanmak için lütfen [Expo'nun dokümanlarına](https://docs.expo.dev/guides/react-compiler/) bakın.
319319

320320
### Metro (React Native) {/*usage-with-react-native-metro*/}
321321

0 commit comments

Comments
 (0)