我尝试使用Ionic和capacitor的应用内浏览器插件。在Installing and using the plugin as per the documentation之后,我收到以下错误:
[webpack-dev-server] ERROR
node_modules/@awesome-cordova-plugins/in-app-browser/ngx/index.d.ts:1:44 - error TS2307: Cannot find module '@awesome-cordova-plugins/core' or its corresponding type declarations.
1 import { AwesomeCordovaNativePlugin } from '@awesome-cordova-plugins/core';
请注意,我已经安装插件通过:
npm install @awesome-cordova-plugins/core --save
我将Ionic 6.19
与@capacitor/core 4.6.3
和angular 15.1.4
一起使用
1条答案
按热度按时间shyt4zoc1#
可能是CLI的问题或bug。我只需要重新启动CLI就可以了。
我还注意到,要让
awesome-cordova-plugins
工作,你必须首先通过npm install @awesome-cordova-plugins/core --save
安装核心库。我是在安装了应用内浏览器插件之后才安装的。这可能是我必须重新启动CLI的原因。