From 47e136b462988f6f6ab971bcf1ec656b1f0ccf78 Mon Sep 17 00:00:00 2001 From: Owen Buckley Date: Fri, 12 Apr 2024 16:41:03 -0400 Subject: [PATCH] update documentation --- docs/pages/docs.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/pages/docs.md b/docs/pages/docs.md index d4434b4..b23aa2e 100644 --- a/docs/pages/docs.md +++ b/docs/pages/docs.md @@ -280,11 +280,11 @@ A couple things to observe in the above example: ### Prerequisites There are of couple things you will need to do to use WCC with JSX: -1. NodeJS version needs to be >= `16.x` +1. NodeJS version needs to be >= `18.20.0` 1. You will need to use the _.jsx_ extension -1. Requires the `--experimental-loaders` flag when invoking NodeJS +1. Requires the `--loader` flag when invoking NodeJS ```shell - $ node --experimental-loader ./node_modules/wc-compiler/src/jsx-loader.js server.js + $ node --loader ./node_modules/wc-compiler/src/jsx-loader.js server.js ``` > _See our [example's page](/examples#jsx) for some usages of WCC + JSX._ 👀