Skip to content

Commit 010563d

Browse files
committed
Add @react-three/a11y and gltf typescript support
1 parent 4bd92e2 commit 010563d

File tree

3 files changed

+34
-9
lines changed

3 files changed

+34
-9
lines changed

package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,15 @@
1313
"@emotion/css": "^11.11.2",
1414
"@fontsource-variable/roboto-mono": "^5.0.8",
1515
"@mantine/core": "^6.0.17",
16+
"@react-three/a11y": "^3.0.0",
1617
"@react-three/drei": "^9.80.1",
1718
"@react-three/fiber": "^8.13.6",
1819
"@react-three/postprocessing": "^2.15.0",
1920
"@tabler/icons-react": "^2.30.0",
2021
"react": "^18.2.0",
2122
"react-dom": "^18.2.0",
22-
"three": "^0.155.0"
23+
"three": "^0.155.0",
24+
"three-stdlib": "^2.24.2"
2325
},
2426
"devDependencies": {
2527
"@types/react": "^18.2.15",

pnpm-lock.yaml

+27-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vite.config.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import { defineConfig } from 'vite'
2-
import react from '@vitejs/plugin-react'
1+
import { defineConfig } from "vite";
2+
import react from "@vitejs/plugin-react";
33

44
// https://vitejs.dev/config/
55
export default defineConfig({
66
server: {
7-
host: '0.0.0.0',
7+
host: "0.0.0.0",
88
port: 3000,
99
},
1010
plugins: [react()],
11-
})
11+
});

0 commit comments

Comments
 (0)