我在Next.js项目中使用react-particles.js npm包。它在开发模式下工作得很好,但在生产模式下不能工作。
代码在
下面import type { NextPage } from 'next'
const Home: NextPage = () => {
return (
<div>
<Head>
<title>Particle Demo</title>
</Head>
<Particles />
</div>
)
}
在控制台开发和生产模式下都没有错误。
使用ts-particles
npm包代替。应该没问题