Nuxt/playground/nuxt.config.ts

10 lines
131 B
TypeScript
Raw Normal View History

export default defineNuxtConfig({
2024-02-18 16:08:57 +00:00
routeRules: {
'/': {
headers: {
'My-Header': 'My-Value'
}
}
}
})