我尝试通过以下方式将引导 css 添加到 install.json 文件中,但出现错误:
,
{
"type": "style",
"src": "https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css"
}
如何将它添加到项目中并使用它?
我尝试通过以下方式将引导 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