0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-02-17 22:44:24 -05:00

fix typo in changeset (#11255)

* fix typo in changeset

* update typo import
This commit is contained in:
liruifengv 2024-06-14 16:19:16 +08:00 committed by GitHub
parent 914d95ec4b
commit 5484114401
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -20,11 +20,11 @@ import vueRenderer from '@astrojs/vue/server.js';
import ReactComponent from "../components/button.jsx"
import VueComponent from "../components/button.vue"
// MDX runtime is contained inside the Astro
import mdxRenderer from "@astrojs/jsx/serverr.js"
// MDX runtime is contained inside the Astro core
import mdxRenderer from "astro/jsx/server.js"
// In case you need to import a custom renderer
import customRenderer from "../renderers/custoRender.js";
import customRenderer from "../renderers/customRenderer.js";
export const GET: APIRoute = async (ctx) => {
const container = await experimental_AstroContainer.create();