From e295d7f29a00d511c5997d948a1760fa695d9a9e Mon Sep 17 00:00:00 2001 From: Luke Schierer Date: Mon, 2 Dec 2024 23:20:27 -0500 Subject: [PATCH] based on what I'm learning from https://github.com/ProjectEvergreen/greenwood/pull/1337 and https://github.com/ProjectEvergreen/greenwood/issues/1336 --- greenwood.config.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/greenwood.config.js b/greenwood.config.js index 2d798b4d..d303b191 100644 --- a/greenwood.config.js +++ b/greenwood.config.js @@ -1,12 +1,15 @@ import { greenwoodPluginTypeScript } from "@greenwood/plugin-typescript"; -import { greenwoodPluginRendererLit } from "@greenwood/plugin-renderer-lit"; import { greenwoodPluginPostCss } from "@greenwood/plugin-postcss"; import { greenwoodPluginGoogleAnalytics } from "@greenwood/plugin-google-analytics"; +//this plugin appears to do more than I first understood from the documentation. Once enabled, I *think* it fully replaces WCC and I *think* you can no longer use html components at all. +import { greenwoodPluginRendererLit } from "@greenwood/plugin-renderer-lit"; + export default { activeContent: true, isolation: true, - prerender: true, + // it appears the two pre-render flags ought to match. + prerender: false, staticRouter: false, markdown: { plugins: ["remark-gfm", "remark-rehype"],