makunugi

Results 2 comments of makunugi

@Riley-Brown This is also happening to me. (Next.js) ``` Server Error SyntaxError: Cannot use import statement outside a module =================================== external%20%22react-hook-speech-to-text%22 (1:0) @ eval > 1 | module.exports = require("react-hook-speech-to-text");...

This Next.js problem was solved by using [next-transpile-modules](https://github.com/martpie/next-transpile-modules). https://github.com/Riley-Brown/react-speech-to-text/issues/22#issuecomment-1000980832 next.config.js ``` const withTM = require('next-transpile-modules')(['react-hook-speech-to-text']); withTM({.. config ..}) ```