AngularJS Express component to configure HTML5 mode in $locationProvider
.
To install the component:
$ ngx install angular-location-html5-mode
To install specific handlers, you can install multiple components:
$ ngx install angular-location-html5-mode
No clue what the ngx
command line tool is? Learn more about AngularJS Express.
After installing the component:
- edit
_build/configure-html5-mode.js
and import the component in your Angular application:
// Angular main module
var ngModule = angular.module('app', []);
// Import component
import c from 'components/angular-location-html5-mode/_build/index';
// Instantiate component
c(ngModule, { baseUrl: 'components/angular-location-html5-mode' });
baseUrl
: Base URL that component can use to construct links
- Initial version