mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-04 13:37:39 +03:00
fix: change the code so as to compress static resources as well
This commit is contained in:
parent
b9d65e89f0
commit
ad014480ea
1 changed files with 18 additions and 17 deletions
35
app.js
35
app.js
|
@ -14,23 +14,10 @@ import AppError from './utils/AppError.js';
|
|||
////////////////////////////////////////////////////////
|
||||
// CREATING AND CONFIGURING APP
|
||||
////////////////////////////////////////////////////////
|
||||
// 0. CREATING APP
|
||||
const app = express();
|
||||
|
||||
app.set('view engine', 'pug');
|
||||
const pathToViews = fileURLToPath(new URL('./views/pug', import.meta.url));
|
||||
app.set('views', pathToViews);
|
||||
const pathToPublicDirectory = fileURLToPath(
|
||||
new URL('./public', import.meta.url)
|
||||
);
|
||||
app.use(
|
||||
express.static(pathToPublicDirectory, {
|
||||
maxAge: process.env.CACHE_PERIOD || '1h',
|
||||
})
|
||||
);
|
||||
|
||||
////////////////////////////////////////////////////////
|
||||
// MIDDLEWARES
|
||||
////////////////////////////////////////////////////////
|
||||
// 1. IMPORTANT MIDDLWARES
|
||||
app.use(compression()); // compressing responses
|
||||
app.use(
|
||||
helmet({
|
||||
|
@ -43,8 +30,22 @@ app.use(
|
|||
crossOriginEmbedderPolicy: false,
|
||||
})
|
||||
); // using sane headers on response
|
||||
if (process.env.NODE_ENV === 'development') app.use(morgan('dev')); // for logging during development
|
||||
|
||||
// 2. SETTING VIEW ENGINE AND PATH TO STATIC ASSETS
|
||||
app.set('view engine', 'pug');
|
||||
const pathToViews = fileURLToPath(new URL('./views/pug', import.meta.url));
|
||||
app.set('views', pathToViews);
|
||||
const pathToPublicDirectory = fileURLToPath(
|
||||
new URL('./public', import.meta.url)
|
||||
);
|
||||
app.use(
|
||||
express.static(pathToPublicDirectory, {
|
||||
maxAge: process.env.CACHE_PERIOD || '1h',
|
||||
})
|
||||
);
|
||||
|
||||
// 3. MISC MIDDLEWARES
|
||||
if (process.env.NODE_ENV === 'development') app.use(morgan('dev')); // for logging during development
|
||||
// middleware to add baseUrl to req object
|
||||
app.use((req, res, next) => {
|
||||
req.urlObj = new URL(
|
||||
|
@ -53,7 +54,7 @@ app.use((req, res, next) => {
|
|||
next();
|
||||
});
|
||||
|
||||
// main middlewares to handle routes
|
||||
// 4. MIDDLWARES FOR ROUTES
|
||||
app.use('/', viewRouter);
|
||||
app.use('/api/v1/', apiRouter);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue