我正在尝试在我的创建反应应用程序(重新连接)中返回 X-Frame-Options,但我不确定用于将函数添加到现有覆盖的正确语法。我该如何正确地做到这一点?
module.exports = override(
fixBabelImports("react-bulma-components", {
libraryName: "react-bulma-components",
libraryDirectory: "lib/components"
}),
{devServer: function(configFunction) {
return function(proxy, allowedHost) {
const config = configFunction(proxy, allowedHost)
config.headers = {
'X-Frame-Options': 'Deny'
}
return config
}
}},
...addCompressions()
);
前端是一个 CRA (rewired) 非静态 webapp
后端是单独托管的节点应用程序
我还尝试将 buildpack 更改为此 buildback,以便在 static.json 文件中添加配置,但这会破坏很多不同的东西,使用不同的服务器等。