I doing an app: headless CMS (astro + wordpress) and try setting render on demand because I don't wanna to rebuildin the whole app when user add sources to wordpress.
So I do the astro.config:
import { defineConfig } from 'astro/config';
import node from '@astrojs/node';
export default defineConfig({
output: 'server',
adapter: node({
mode: 'standalone'
}),
});
And after this, when I launch the app it very slow and have this error in console log in devtools:
Third-party cookie will be blocked. Learn more in the Issues tab.
When I click on this issue I see:
No resource with given identifier found
The site will finally start but it is not acceptable to use this in production.
Anybody can help and explain me what happen? what I do wrong?