Skip to content

Commit bc19d38

Browse files
committed
changed name
1 parent 84eb887 commit bc19d38

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "ng8-sorting-visualizer",
2+
"name": "sorting-visualizer-clone",
33
"version": "0.0.0",
44
"scripts": {
55
"ng": "ng",

server.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ const path = require('path');
55
const app = express();
66

77
// Serve only the static files form the dist directory
8-
app.use(express.static(__dirname + '/dist/ng8-sorting-visualizer'));
8+
app.use(express.static(__dirname + '/dist/sorting-visualizer-clone'));
99

1010
app.get('/*', function(req,res) {
1111

12-
res.sendFile(path.join(__dirname+'/dist/ng8-sorting-visualizer/index.html'));
12+
res.sendFile(path.join(__dirname+'/dist/sorting-visualizer-clone/index.html'));
1313
});
1414

1515
// Start the app by listening on the default Heroku port

0 commit comments

Comments
 (0)