Execution in a Cloud Function #121
-
Hi @ElMassimo, Our setup requires running We're getting the following error when we execute the command
My assumption is this is because Iles is trying to convert Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @gilesbutler! Regarding
Although it's technically possible to support Even if tackling this problem, not being able to write to the filesystem is a limitation that can cause other problems inside Vite. I'd recommend you experiment by forking iles and adding support for all extensions for If it turns out everything runs as expected, we can bring the file detection into iles. |
Beta Was this translation helpful? Give feedback.
Hi @gilesbutler!
Regarding
.iles-ssg-temp
, you can configure that usingtempDir
.loadConfigFromFile
is exposed by Vite, and it does create a temporary file when transpiling TypeScript.Although it's technically possible to support
iles.config.js
, the resolution process is very complex.Even if tackling this problem, not being able to write to the filesystem is a limitation that can cause other problems inside Vite.
I'd recommend you experiment by forking iles and adding support for all extensions for
iles.config
, useiles.config.js
oriles.config.mjs
, and then see if any other problems come up.If it turns out everything runs as expected, we can bring the file detection into iles.