Skip to content

Commit 24c1c9a

Browse files
author
Jon Myrick
authored
Merge pull request CodewarsClone#41 from CodewarsClone/wedBranch2
changed where the server points. it now points to the src folder
2 parents 8e73d9d + 7e54e7f commit 24c1c9a

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ const testCtrl = require('./controllers/testCtrl');
6767
const kataCtrl = require('./controllers/kataCtrl');
6868

6969

70-
app.use(express.static(__dirname + '/dist'));
70+
app.use(express.static(__dirname + '/src'));
7171
app.use(bodyParser.json());
7272
app.use(cors());
7373

src/components/home/homeCtrl.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,4 @@ angular.module('app').controller('homeCtrl', function($scope, $state, mainServic
2424
$scope.getRandomKata(mainService.user.id);
2525
}
2626

27-
28-
2927
});

0 commit comments

Comments
 (0)