dmitriy-baltak

Results 5 comments of dmitriy-baltak

Same issue here, but we are not using docker to start the dynamodb, we just follow advice from the docs at the moment and use `serverless dynamodb start --migrate` command...

Had same issue, make sure you call callback in your handler: ``` () => { return (event, context, callback) => { console.log('handler') console.log('event', JSON.stringify(event)) callback() } } ```

> Just ignore default config. Seems, its NextJS related issue. > > Even using `defaultConfig` as is throws an error: > > ``` > module.exports = async (phase, { defaultConfig...

The issue seems to be related to the fact that Threejs changed it's api and videojs-vr is still using old one. It's trying to use `faceVertexUvs` as an array, when...

For anyone having issues with this plugin since it's not actively maintained you can disable authorizers on local for serverless-offline itself as an alternative for using this plugin: ``` custom:...