Skip to content
This repository was archived by the owner on Aug 12, 2021. It is now read-only.

Commit 9b8ecaf

Browse files
committed
Fix vulnerabilities
1 parent 3c7172d commit 9b8ecaf

File tree

5 files changed

+1032
-4382
lines changed

5 files changed

+1032
-4382
lines changed

next.config.js

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
"use strict";
22

33
require("dotenv").config();
4-
const withSass = require("@zeit/next-sass");
5-
const withFonts = require("next-fonts");
64

7-
module.exports = withSass(
8-
withFonts({
9-
env: {
10-
DB: process.env.DB,
11-
HOST: process.env.HOST
12-
}
13-
})
14-
);
5+
module.exports = {
6+
env: {
7+
DB: process.env.DB,
8+
HOST: process.env.HOST,
9+
},
10+
};

0 commit comments

Comments
 (0)