Sass Styling with Gulp Dev not updating in browser

0
I need to reload the entire app for the new CSS to be loaded. Gulp Dev obviously creates the new CSS file in the “deployment” Folder, the browser refreshes but no new CSS is applied. Has anyone come over this? Thanks Ron
asked
2 answers
0

You could try to use Calypso instead if that fits your needs. Calypso will work with mendix 7 & 8.

See How To Use Calypso

answered
0

I use VisualBasicCode with extension 'Live Sass compiler’ and an extension-setting to make it store the resulting main.css and main.css.map in the deployment-dir.

"liveSassCompile.settings.formats": [

        {"format": "expanded", "extensionName": ".css", "savePath": "/../../../deployment/web/styles/web/css/"},

        {"format": "expanded", "extensionName": ".css", "savePath": "/css"}

    ]

No more need to reload the entire app :-)

answered