【发布时间】:2022-02-02 13:47:53
【问题描述】:
您好,我正在声明一个像这样的音频上下文,它说窗口未定义。我尝试在 window.Context 上方声明 declare const window :any 但错误仍然存在。有谁知道我该如何解决这个问题?
window.AudioContext = window.AudioContext || (window as any).webkitAudioContext
export default function TestPage(){
const audioContext = new AudioContext();
return <>Hello</>
}
【问题讨论】:
-
这能回答你的问题吗? Window is not defined in Next.js React app
标签: typescript next.js