From 5636edd5b6af3486284b430f660b1b9e309a3671 Mon Sep 17 00:00:00 2001 From: Carson Fleming Date: Fri, 20 Oct 2023 23:37:28 -0400 Subject: Bring it all together and nitpick the appearance --- index.js | 2 -- 1 file changed, 2 deletions(-) (limited to 'index.js') diff --git a/index.js b/index.js index e091e1a..fe578ec 100644 --- a/index.js +++ b/index.js @@ -2,7 +2,6 @@ const express = require('express'); const mongoose = require('mongoose'); const config = require('./config.js'); const routes = require('./routes.js'); -const apiRoutes = require('./api-routes.js'); async function serve() { try { @@ -21,7 +20,6 @@ async function serve() { app.use(express.urlencoded({extended: true})); app.use(express.json()); - app.use('/api', apiRoutes); app.use('/css', express.static(__dirname+'/static/css')); app.use('/js', express.static(__dirname+'/static/js')); app.use('/', routes); -- cgit v1.2.3