es.davy.ai

Preguntas y respuestas de programación confiables

¿Tienes una pregunta?

Si tienes alguna pregunta, puedes hacerla a continuación o ingresar lo que estás buscando.

Tag: NODE-MODULES

Browser-sync – proxy de un dominio recibe un error HTTP 403 – no tiene autorización para ver esta página.

Yo ejecuto una tarea de gulp utilizando el módulo browser-sync de NodeJS de la siguiente manera. === Archivo gulpfile.js === let browserSync = require(‘browser-sync’).create(); gulp.task(‘browser-sync’, function(){ browserSync.init( { open: true, injectChanges: true, proxy: ‘https://generalgulp.devsunset’, host: ‘192.168.1.76’, serveStatic: [‘.’], https: { key: ‘C:\\WebProjects\\GeneralGulp\\resources\\certificates\\server-generalgulp.key’, cert: ‘C:\\WebProjects\\GeneralGulp\\resources\\certificates\\server-generalgulp.crt’ } }); }); === === La . . . Read more

Error de importación con @react-three/drei / react-three-fiber

Estoy intentando usar @react-three/drei. He instalado y usado con éxito @react-three/fiber, pero cuando instalé @react-three/drei, obtuve el siguiente error: ./node_modules/three-stdlib/lights/RectAreaLightUniformsLib.js Error de importación intentado: & # 39; DataUtils & # 39; no está exportado de & # 39; three & # 39; Obtengo el error cuando uso esta importación para . . . Read more