remove loging by defolt
This commit is contained in:
parent
b1babe3c50
commit
9175cb8b5f
4
app.ts
4
app.ts
@ -1,6 +1,5 @@
|
|||||||
import express from "express";
|
import express from "express";
|
||||||
import path from 'path'
|
import path from 'path'
|
||||||
import morgan from 'morgan'
|
|
||||||
import 'dotenv/config'
|
import 'dotenv/config'
|
||||||
|
|
||||||
const hostname = '127.0.0.1';
|
const hostname = '127.0.0.1';
|
||||||
@ -11,7 +10,8 @@ const app = express();
|
|||||||
app.set('views', path.join(__dirname, 'views'));
|
app.set('views', path.join(__dirname, 'views'));
|
||||||
app.set('view engine', 'hbs');
|
app.set('view engine', 'hbs');
|
||||||
|
|
||||||
app.use(morgan('dev'));
|
// import morgan from 'morgan'
|
||||||
|
// app.use(morgan('dev'));
|
||||||
app.use(express.json());
|
app.use(express.json());
|
||||||
app.use(express.urlencoded({ extended: false }));
|
app.use(express.urlencoded({ extended: false }));
|
||||||
app.use(express.static(path.join(__dirname, 'public')));
|
app.use(express.static(path.join(__dirname, 'public')));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user