vite-plugin-glslify-inject Why|How to use|Output|How to set up Write GLSL in distinct files with theglslifymodule system; Import them as ES6 modules; Inject contants at runtime; Auto-generate TS types for your modules, constants and uniforms; ...
{ "name": "vite-plugin-glslify-inject", "version": "1.1.2", "type": "module", "description": "A plugin to write GLSL more comfortably.", "scripts": { "build": "tsc -p ./tsconfig.build.json", "test": "jest --watchAll" }, "main": "./dist/plugin.js", "types": "./di...
Handsfree type safe GLSL programming for WebGL with Vite - fix: build error with Vite · geoffreytools/vite-plugin-glslify-inject@c9453c1
3 changes: 2 additions & 1 deletion 3 vite.config.ts Original file line numberDiff line numberDiff line change @@ -1,6 +1,7 @@ import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' import glslify from 'vite-plugin-glslify' export default defineConfig({ plug...