import lume failed (Netlify deploy) #129
-
I am getting this error message:
My I am not certain how to go about clearing the error so Netlify can build/deploy my site. Any pointers would be appreciated. Cheers! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi. import { stringify } from "lume/deps/yaml.ts";
|
Beta Was this translation helpful? Give feedback.
-
Thank you @oscarotero I made that small fix and the error is gone and the Netlify deploy was built. Cheers! |
Beta Was this translation helpful? Give feedback.
Hi.
Lume is using typescript now, so you have to update your imported files from
*.js
to*.ts
.In this file it should be:
_config.js
is still working for now with*.js
but I encourage to change to*.ts
, to prevent future errors when javascript files are removed.Thanks!