[Answer]-Minification error with django compressor

1👍

You have two semicolons missing:

app.config(function ($stateProvider, $urlRouterProvider) {

    // For any unmatched url, send to /route1
    $urlRouterProvider.otherwise("/") // <--- HERE

    $stateProvider
        .state('login', {
            url: "/",
            templateUrl: "/static/html/profile/login.html",
            controller: "loginController"
        })

        .state('register', {
            url: "/register",
            templateUrl: "/static/html/profile/register.html",
            controller: "loginController"
        }) // <--- HERE

});

It’s generally a good rule of thumb to always run javascript code through JSHint before minimizing (especially angular code which tends to really hate being minified…)

👤yuvi

Leave a comment