admin管理员组文章数量:1420145
How to fix the error Cannot find module './audio/audio1.mp3' or its corresponding type declarations. also already use the require('./audio/audio1.mp3')
and also getting an error.
How to fix the error Cannot find module './audio/audio1.mp3' or its corresponding type declarations. also already use the require('./audio/audio1.mp3')
and also getting an error.
1 Answer
Reset to default 6Inside the src/react-app-env.d.ts
add this:
/// <reference types="react-scripts" />
declare module '*.mp3'; // '*.wav' if you're using wav format
Now you can use it like this:
import audio1 from './audio/audio.mp3';
const myAudio = new Audio(audio1);
版权声明:本文标题:javascript - How to fix the Cannot find module mp3 file or its corresponding type declarations - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745324986a2653549.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论