remove empty readme and tweak .gitignore, next.config.ts, and package.json

This commit is contained in:
rhpidfyre 2024-12-09 21:52:26 -05:00
parent 76792fd144
commit 8c3e9cf9ea
4 changed files with 3 additions and 7 deletions

2
web/.gitignore vendored
View File

@ -1,7 +1,5 @@
bun.lockb
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
/.pnp

View File

View File

@ -1,7 +1,5 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
};
const nextConfig: NextConfig = {};
export default nextConfig;

View File

@ -1,9 +1,9 @@
{
"name": "bhop-website",
"name": "map-service-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev": "next dev -p 3000",
"build": "next build",
"start": "next start",
"lint": "next lint"