如何将引导程序与 cloudflare 应用程序一起使用



我尝试通过以下方式将引导 css 添加到 install.json 文件中,但我收到一个错误:

,
{
"type": "style",
"src": "https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css"
}

如何将其添加到项目中并使用它?

我在install.json中对此进行了测试,它工作正常

"resources": {
"body": [
{
"type": "style",
"src": "https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css"
},
{
"type": "style",
"src": "./source/app.css"
},
{
"type": "script",
"src": "./source/app.js"
}
]
},
"preview": {
"handlers": [
{
"options": ["_default"],
"execute": "INSTALL_SCOPE.setOptions(INSTALL_OPTIONS)"
},
{
"options": ["_product"],
"execute": "INSTALL_SCOPE.setProduct(INSTALL_PRODUCT)"
}
]
},
"options": {}
}

您的 install.json 的 JSON 可能有问题。您可以尝试将 install.json 复制并粘贴到此工具中以测试: https://www.cloudflare.com/apps/developer/install-json-tester

相关内容

  • 没有找到相关文章

最新更新