Problem switching to SSR mode #42
rollonbears234
started this conversation in
General
Replies: 1 comment
-
I'm not very familiar with Deno. But after browsing some docs and GitHub issues, here's what I found.
export default defineConfig({
output: "server",
site: "https://your-site-url.com/",
integrations: [
tailwind({
config: {
applyBaseStyles: false,
},
}),
react(),
sitemap({
customPages: ["https://your-site-url.com/posts/astro-paper-2"],
}),
],
// ---
}); |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm new to Astro, but I followed these directions https://docs.astro.build/en/guides/deploy/deno/
And it seems to break the whole app.
What am I doing wrong? Why does everything break when the instructions in astro don't mention anything like using customPages
I tried this on all the pages, but it didn't work either
Beta Was this translation helpful? Give feedback.
All reactions