使用 IntelliJ 构建 React Kotlin 应用程序时出错
Error getting while building react kotlin app using IntelliJ
我使用 create-react-kotlin-app
创建了一个简单的 React 应用程序。成功 npm start
后,我尝试使用 IntelliJ IDEA
的 Build -> Build Project
构建项目,但它失败了
Error:(16, 44) Kotlin: Can't access property 'reactLogo' marked with @JsModule annotation from non-modular project
我在这里错过了什么?
注意:我没有对create-react-kotlin-app
自带的模板做任何修改。项目运行成功,问题只在我尝试构建时存在。
我通过 terminal
解决了这个问题。
从项目根目录,运行
react-scripts-kotlin build
这将自动创建一个包含生产就绪文件的 build
文件夹。
我使用 create-react-kotlin-app
创建了一个简单的 React 应用程序。成功 npm start
后,我尝试使用 IntelliJ IDEA
的 Build -> Build Project
构建项目,但它失败了
Error:(16, 44) Kotlin: Can't access property 'reactLogo' marked with @JsModule annotation from non-modular project
我在这里错过了什么?
注意:我没有对create-react-kotlin-app
自带的模板做任何修改。项目运行成功,问题只在我尝试构建时存在。
我通过 terminal
解决了这个问题。
从项目根目录,运行
react-scripts-kotlin build
这将自动创建一个包含生产就绪文件的 build
文件夹。