You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Errors prevented bundling:
While processing files with less (for target web.browser):
client/0config/bootstrap/custom.bootstrap.import.less:6:
Unknown import: custom.bootstrap.mixins.import.less
But running 'meteor build' again after that gives no errors
as compileLessBatch successfully creates needed files during first run, but meteor doesn't wait till they are generated, so build process throws error at first run and is finished successfully on second run.
if @import "{}/client/0config/bootstrap/custom.bootstrap.mixins.import.less"; and adding the file to repo can override it, that's great!
Firstly, thanks very much for your work on this project!
When running ‘npm run mup-deploy’ the following error was appearing during the app build/bundling part of the process:
I managed to fix the problem by editing the "/client/0config/bootstrap/custom.bootstrap.import.less" file and change this line:
@import "custom.bootstrap.mixins.import.less";
to
@import "{}/client/0config/bootstrap/custom.bootstrap.mixins.import.less";
Nemo64/meteor-bootstrap#64 pointed me in the right direction for the fix.
The text was updated successfully, but these errors were encountered: