@tyzo/astro
v0.0.3
Published
A website builder for react and astro
Downloads
2
Readme
Tyzo Astro integration
Add the following to your astro.config.mjs
:
import { defineConfig } from "astro/config";
import react from "@astrojs/react";
import tyzo from "@tyzo/astro";
// https://astro.build/config
export default defineConfig({
output: "hybrid",
integrations: [
react(),
tyzo({
spaceId: "40ac4a15-5dc7-4623-9d8b-f432ec0ddee5",
renderTreeId: "cf4b0426-f433-4bad-8de5-043e07aef46f",
}),
],
});