From be7f9553845a7c6a465eb14845858c6a1ec8abe8 Mon Sep 17 00:00:00 2001 From: Jonas Galvez Date: Sun, 13 Oct 2024 17:33:25 -0300 Subject: [PATCH] fix(examples): import typo --- examples/react-next/vite.config.js | 2 +- examples/react-streaming/vite.config.js | 2 +- examples/react-vanilla-spa/vite.config.js | 2 +- examples/react-vanilla/vite.config.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/react-next/vite.config.js b/examples/react-next/vite.config.js index e108840f..c90d1a69 100644 --- a/examples/react-next/vite.config.js +++ b/examples/react-next/vite.config.js @@ -3,7 +3,7 @@ import viteFastify from '@fastify/vite/plugin' import viteReact from '@vitejs/plugin-react' export default { - root: join(importa.meta.dirname, 'client'), + root: join(import.meta.dirname, 'client'), plugins: [ viteFastify(), viteReact({ jsxRuntime: "classic" }) diff --git a/examples/react-streaming/vite.config.js b/examples/react-streaming/vite.config.js index c19d68dd..ddc37319 100644 --- a/examples/react-streaming/vite.config.js +++ b/examples/react-streaming/vite.config.js @@ -3,7 +3,7 @@ import viteFastify from '@fastify/vite/plugin' import viteReact from '@vitejs/plugin-react' export default { - root: join(importa.meta.dirname, 'client'), + root: join(import.meta.dirname, 'client'), plugins: [ viteFastify(), viteReact({ jsxRuntime: 'classic' }) diff --git a/examples/react-vanilla-spa/vite.config.js b/examples/react-vanilla-spa/vite.config.js index e108840f..c90d1a69 100644 --- a/examples/react-vanilla-spa/vite.config.js +++ b/examples/react-vanilla-spa/vite.config.js @@ -3,7 +3,7 @@ import viteFastify from '@fastify/vite/plugin' import viteReact from '@vitejs/plugin-react' export default { - root: join(importa.meta.dirname, 'client'), + root: join(import.meta.dirname, 'client'), plugins: [ viteFastify(), viteReact({ jsxRuntime: "classic" }) diff --git a/examples/react-vanilla/vite.config.js b/examples/react-vanilla/vite.config.js index c19d68dd..ddc37319 100644 --- a/examples/react-vanilla/vite.config.js +++ b/examples/react-vanilla/vite.config.js @@ -3,7 +3,7 @@ import viteFastify from '@fastify/vite/plugin' import viteReact from '@vitejs/plugin-react' export default { - root: join(importa.meta.dirname, 'client'), + root: join(import.meta.dirname, 'client'), plugins: [ viteFastify(), viteReact({ jsxRuntime: 'classic' })