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 bun.lockb
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies # dependencies
/node_modules /node_modules
/.pnp /.pnp

View File

View File

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

View File

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