Boom
parent
22548f897b
commit
bf1e851d1f
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"extends": "next/core-web-vitals"
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
/**
|
||||
* @file Webserver
|
||||
* @description The MangoRecipe front-end
|
||||
* @module webserver/index
|
||||
*/
|
||||
|
||||
import type { NextFunction, Request, Response } from "express";
|
||||
import type { SessionOptions } from "express-session";
|
||||
|
||||
import { minify } from "terser";
|
||||
|
||||
import express from "express";
|
||||
import expressSession from "express-session";
|
||||
import path from "path";
|
||||
|
File diff suppressed because it is too large
Load Diff
14
package.json
14
package.json
|
@ -18,13 +18,15 @@
|
|||
],
|
||||
"author": "nightlymania",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"dependencies": {
|
||||
"next": "^12.3.1",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"eslint": "8.25.0",
|
||||
"eslint-config-next": "12.3.1"
|
||||
"eslint-config-next": "12.3.1",
|
||||
"typescript": "^4.8.4"
|
||||
},
|
||||
"dependencies": {
|
||||
"express": "^4.18.2",
|
||||
"express-session": "^1.17.3",
|
||||
"path": "^0.12.7",
|
||||
"terser": "^5.15.1"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
function HomePage() {
|
||||
return <>
|
||||
|
||||
<h1>Hello!</h1>
|
||||
|
||||
</>
|
||||
|
||||
}
|
||||
|
||||
export default HomePage
|
||||
|
Loading…
Reference in New Issue