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:
parent
914d95ec4b
commit
5484114401
1 changed files with 3 additions and 3 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Reference in a new issue