moved Webpack bundle directory out of /static/js because it contains more than just JS files
This commit is contained in:
parent
6b2222a3ec
commit
c9fa22b093
6 changed files with 24 additions and 9 deletions
|
@ -1,4 +1,4 @@
|
|||
import "../../../../../css/directives/components/pages/repo-page/repo-page.scss";
|
||||
import "sass/repo-page/repo-page.scss";
|
||||
import repoHeader from "./header";
|
||||
import repoSidebar from "./sidebar";
|
||||
import repoBody from "./body";
|
||||
|
|
|
@ -1,6 +1,18 @@
|
|||
/**
|
||||
* Constructs client-side routes.
|
||||
*/
|
||||
export abstract class RouteBuilder {
|
||||
|
||||
/**
|
||||
* Configure the redirect route.
|
||||
* @param options Configuration options.
|
||||
*/
|
||||
public abstract otherwise(options: any): void;
|
||||
|
||||
/**
|
||||
* Register a route.
|
||||
* @param path The URL of the route.
|
||||
* @param pagename The name of the page to associate with this route.
|
||||
*/
|
||||
public abstract route(path: string, pagename: string): RouteBuilder;
|
||||
}
|
Reference in a new issue