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
I've just started trying out grunt-cache-bust and its working as a charm for css, but now i am using requirejs in the project and the configuration of js files are in main.js file where i have specified all the paths like require.config({ paths: { // Libraries 'moment': 'global/js/vendor/moment', 'jquery': 'global/js/vendor/jquery/jquery-3.3.1.min', 'jquerysly': 'global/js/vendor/plugins/sly.min', } });
After the cache bust the moment.js file will be moment-.js
Now i have to change the path with the updated path in config file, how can i do this?
Note: the path will not have .js in config file
The text was updated successfully, but these errors were encountered:
I've just started trying out grunt-cache-bust and its working as a charm for css, but now i am using requirejs in the project and the configuration of js files are in main.js file where i have specified all the paths like
require.config({ paths: { // Libraries 'moment': 'global/js/vendor/moment', 'jquery': 'global/js/vendor/jquery/jquery-3.3.1.min', 'jquerysly': 'global/js/vendor/plugins/sly.min', } });
After the cache bust the moment.js file will be moment-.js
Now i have to change the path with the updated path in config file, how can i do this?
Note: the path will not have .js in config file
The text was updated successfully, but these errors were encountered: