Intellij Idea 无法使用intelliJ IDE为Web项目设置合成

c7rzv4ha  于 2023-05-06  发布在  其他
关注(0)|答案(1)|浏览(202)

我想使用Kotlin和compose for web框架构建一个网站。为此,我只是像这样使用intelliJ项目创建向导:

然后我点击按钮运行'build.gradle.kts',我有这样的消息:

warning: default scripting plugin is disabled: The provided plugin org.jetbrains.kotlin.scripting.compiler.plugin.ScriptingCompilerConfigurationComponentRegistrar is not compatible with this version of compiler
error: unable to evaluate script, no scripting plugin loaded

Process finished with exit code 1

我不知道如何解决这个错误。我已经尝试使用项目结构设置将Kotlin.编译器包含在项目中,但没有任何效果。
[编辑]
我发现我能够启动项目并在localhost上显示页面,这要归功于gradle任务。这些任务在gradle工具窗口中提供:

我使用'jsBrowserRun'任务来启动应用程序。有很多可用的脚本,我不知道他们中的大多数做什么。我也不知道这些任务位于哪个文件中,如果有人知道它们在哪里,我将不胜感激。最后,我想更好地理解这个框架,它为我提供了一个生成HTML和JavaScript的UI,但我应该如何围绕它构建我的服务器?

相关问题