新建项目无法运行 #15210
-
|
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
为什么这个问题没人解决,项目都跑不起来 |
Beta Was this translation helpful? Give feedback.
-
这个问题啥时候能解决啊 |
Beta Was this translation helpful? Give feedback.
-
主要是这个模板中 <!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<meta content="width=device-width,initial-scale=1,user-scalable=no" name="viewport">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-touch-fullscreen" content="yes">
<meta name="format-detection" content="telephone=no,address=no">
<meta name="apple-mobile-web-app-status-bar-style" content="white">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" >
<title><%= projectName %></title>
<script><%= htmlWebpackPlugin.options.script %></script>
</head>
<body>
<div id="app"></div>
</body>
</html> 其中这行 <title><%= projectName %></title> 可以修改为 <title></title> 或者
这样修改后,可能还会出现另外一个问题。搜索 每次编译时提示警报:WARNING in external "taro_app_library@/remoteEntry.js" #15413 按其中一种方式配置 {
h5: {
compiler: {
prebundle: {
enable: false,
},
type: 'webpack5'
},
}
} 重新跑命令 官方看到能在修改下 github 模板 NervJS/taro-project-templates 中 3.6 分支、3.5分支 ,并且同步下 |
Beta Was this translation helpful? Give feedback.
主要是这个模板中
src/index.html
中的<title><%= projectName %></title>
的变量projectName
没有注册成功。可以选用
github
模版,gitee
模版虽然快,但可能目前不是最新的。不过 github 模板 NervJS/taro-project-templates 中 3.6 分支、3.5分支 目前也存在这个问题<title><%= projectName %></title>
。