As I work on developing a Meteor application in an offline setting, with local web servers and no external internet access, I face a challenge.
Upon executing meteor build ./output
, I encounter the following issue:
...AppData\Local\.meteor\packages\templating\1.1.9\plugin.compileTemplatesBatch.os\npm\node_modules\meteor\promise\node_modules\meteor-promise\promise_server.js:116
throw error;
Error: EPERM, symlink '..\babylon\bin\babylon.js'
While the application functions smoothly on localhost with no apparent hiccups, complications arise when attempting to build
or bundle
the app.
Serving as potentially valuable information:
meteor build ./output --verbose
provides the following output (excluding unnecessary packages)
Local package version is up-to-date: [email protected]
Local package version is up-to-date: [email protected]
Thank you for any assistance.