根据 sitemap 的规则[0],当前页面 [pages/index/index] 将被索引——警告的解决
我们在开发小程序时,会有以下的类似警告,
根据 sitemap 的规则[0],当前页面 [pages/index/index] 将被索引
如需去掉,则可以在小程序项目配置文件project.config.json的setting中配置字段checkSiteMap为 false。
即
"setting": { "urlCheck": false, "es6": true, "postcss": true, "preloadBackgroundData": false, "minified": true, "newFeature": true, "coverView": true, "autoAudits": false, "showShadowRootInWxmlPanel": true, "scopeDataCheck": false, "checkInvalidKey": true, "checkSiteMap": false, "uploadWithSourceMap": true, "babelSetting": { "ignore": [], "disablePlugins": [], "outputPath": "" } },
即可。