Skip to content

Commit

Permalink
docs: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Feb 27, 2024
1 parent 32f1e6e commit 3017e6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/1.guide/10.tasks.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ You can define scheduled tasks using Nitro configuration to automatically run af
::code-group
```ts [nitro.config.ts]
export default defineNitroConfig({
tasks: {
scheduledTasks: {
// Run `cms:update` task every minute
'* * * * *': ['cms:update']
}
Expand All @@ -77,7 +77,7 @@ export default defineNitroConfig({
```ts [nuxt.config.ts]
export default defineNuxtConfig({
nitro: {
tasks: {
scheduledTasks: {
// Run `cms:update` task every minute
'* * * * *': ['cms:update']
}
Expand Down

0 comments on commit 3017e6e

Please sign in to comment.