mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/Zos.git
synced 2026-06-15 20:36:26 +00:00
8 lines
287 B
JavaScript
8 lines
287 B
JavaScript
module.exports = function() {
|
|
throw new Error(
|
|
"It appears that you're using glslify in browserify without "
|
|
+ "its transform applied. Make sure that you've set up glslify as a source transform: "
|
|
+ "https://github.com/substack/node-browserify#browserifytransform"
|
|
)
|
|
}
|