-
Hey there, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
It is! 😃 You can deploy it under a sub path so that you serve your tutorial at To do so you need to modify your astro config like this: export default defineConfig({
base: '/subpath'
//...
}) To learn more you can check https://docs.astro.build/en/reference/configuration-reference/#base You will also have to make sure to serve the assets under that sub path with the correct COOP COEP headers. See https://tutorialkit.dev/guides/deployment/#headers-configuration to learn more. If you have any other questions, let us know! |
Beta Was this translation helpful? Give feedback.
It is! 😃
You can deploy it under a sub path so that you serve your tutorial at
https://example.com/subpath
.To do so you need to modify your astro config like this:
To learn more you can check https://docs.astro.build/en/reference/configuration-reference/#base
You will also have to make sure to serve the assets under that sub path with the correct COOP COEP headers. See https://tutorialkit.dev/guides/deployment/#headers-configuration to learn more.
If you have any other questions, let us know!