Redirects setting in netlify.toml not work

This is my netlify site name: mini-ghost-dev.netlify.app

I have added the following configuration to my Github Repo in netlify.toml:

[[redirects]]
from = "/blog"
to = "/posts"
status = 301
force = true

[[redirects]]
from = "/blog/tags/*"
to = "/tags/:splat"
status = 301
force = true

[[redirects]]
from = "/blog/*"
to = "/posts/:splat"
status = 301
force = true

This used to work in the past, but it stopped working one day, and I can’t figure out the reason. Can someone provide me with some assistance?

You’re using Nuxt. Nuxt configures its redirects in the _redirects file and that has higher priority than netlify.toml.