Skip to content

Commit

Permalink
fix(examples): import typo
Browse files Browse the repository at this point in the history
  • Loading branch information
galvez committed Oct 13, 2024
1 parent 4a346aa commit be7f955
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/react-next/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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" })
Expand Down
2 changes: 1 addition & 1 deletion examples/react-streaming/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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' })
Expand Down
2 changes: 1 addition & 1 deletion examples/react-vanilla-spa/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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" })
Expand Down
2 changes: 1 addition & 1 deletion examples/react-vanilla/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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' })
Expand Down

0 comments on commit be7f955

Please sign in to comment.