将 React 开发工具与 Preact 结合使用
Using React Dev Tools with Preact
我刚刚 preact-redux-example
和 运行,现在我正尝试在我的应用程序中使用 Preact Dev Tools。
基于this post我假设这是添加
的情况
import 'preact/devtools'
进入入口点 (app.js
) 文件。
但是,这会产生以下错误:
./src/components/app.js
Module not found: Error: Cannot resolve module 'preact/devtools'
我还需要安装其他东西吗,还是我走错路了?
我刚刚 preact-redux-example
和 运行,现在我正尝试在我的应用程序中使用 Preact Dev Tools。
基于this post我假设这是添加
的情况import 'preact/devtools'
进入入口点 (app.js
) 文件。
但是,这会产生以下错误:
./src/components/app.js
Module not found: Error: Cannot resolve module 'preact/devtools'
我还需要安装其他东西吗,还是我走错路了?