The post shows the method to get Magento 2 URL in the JS file. For example, you are stuck in a situation where you want to get url from .js file and append it with your module controller link from. Well, it is not possible to use the block to get the url.
You may require to get the URL in JS file and it is not recommended to use the static URL as with time, the URL key may change and the static value will give you the error.
Hence, implement the below method to get Magento 2 URL in JS file:
Method to Get Magento 2 URL in JS File:
define( [ 'jquery', 'mage/url', ], function (jQuery,url) { 'use strict'; return function () { var getUrl = url.build('meetanshi/meetanshi/index'); console.log(getUrl); } } );
Thanks.