NNuxt•Created by snakemastr508 on 4/23/2025 in #❓・help Use proxy routeRules in build hook
@kapa.ai And how would the second option look like if my proxy rule is dynamic and has authentication headers like
routeRules: {
'/cms/**': {
proxy: {
to: 'http://localhost:3000/api/**',
headers: {
Authorization: 'Basic {insert_key_here}'
}
}
}
}