[READ-ONLY] Mirror of https://github.com/flo-bit/threlte-vr-code-editor. proof of concept for a live 3d code editor in vr
code-editor threejs threlte vr
0

Configure Feed

Select the types of activity you want to include in your feed.

threlte-vr-code-editor / vite.config.ts
232 B 10 lines
1import { sveltekit } from '@sveltejs/kit/vite' 2import { defineConfig } from 'vite' 3import mkcert from 'vite-plugin-mkcert' 4 5export default defineConfig({ 6 plugins: [mkcert(), sveltekit()], 7 ssr: { 8 noExternal: ['three'] 9 } 10})