Skip to content

Commit

Permalink
Add @react-three/a11y and gltf typescript support
Browse files Browse the repository at this point in the history
  • Loading branch information
gmarcha committed Aug 12, 2023
1 parent 4bd92e2 commit 010563d
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 9 deletions.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,15 @@
"@emotion/css": "^11.11.2",
"@fontsource-variable/roboto-mono": "^5.0.8",
"@mantine/core": "^6.0.17",
"@react-three/a11y": "^3.0.0",
"@react-three/drei": "^9.80.1",
"@react-three/fiber": "^8.13.6",
"@react-three/postprocessing": "^2.15.0",
"@tabler/icons-react": "^2.30.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"three": "^0.155.0"
"three": "^0.155.0",
"three-stdlib": "^2.24.2"
},
"devDependencies": {
"@types/react": "^18.2.15",
Expand Down
31 changes: 27 additions & 4 deletions pnpm-lock.yaml

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

8 changes: 4 additions & 4 deletions vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";

// https://vitejs.dev/config/
export default defineConfig({
server: {
host: '0.0.0.0',
host: "0.0.0.0",
port: 3000,
},
plugins: [react()],
})
});

0 comments on commit 010563d

Please sign in to comment.