Trying to clone and run the repo in a Windows environment, and changing the scripts with cross-env (yarn add -D cross-env)
"dev": "cross-env ELEVENTY_EXPERIMENTAL=true eleventy --serve",
"build": "cross-env ELEVENTY_EXPERIMENTAL=true eleventy",
Then with npm run dev it just doesn't work, no error messages, simply the terminal ends the process instead of being alive
PS C:\...\eleventy-react> npm run dev
> eleventy-react@0.2.2 dev C:\...\eleventy-react
> cross-env ELEVENTY_EXPERIMENTAL=true eleventy --serve
Warning: Configuration API `addExtension` is an experimental Eleventy feature with an unstable API. Be careful!
PS C:\...\eleventy-react>
EDIT: Also build doesn't seem to do anything
Trying to clone and run the repo in a Windows environment, and changing the scripts with
cross-env(yarn add -D cross-env)Then with
npm run devit just doesn't work, no error messages, simply the terminal ends the process instead of being aliveEDIT: Also
builddoesn't seem to do anything