Skip to content

Commit

Permalink
Revert "Create next.js project"
Browse files Browse the repository at this point in the history
This reverts commit 8e578d9.
  • Loading branch information
codeofandrin committed Nov 20, 2024
1 parent 8e578d9 commit 0e52f50
Show file tree
Hide file tree
Showing 30 changed files with 3,167 additions and 936 deletions.
57 changes: 21 additions & 36 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,40 +1,25 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/versions

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# env files (can opt-in for committing if needed)
.env*

# vercel
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts
15 changes: 15 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!doctype html>
<html lang="en">

<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>imgmeta</title>
</head>

<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>

</html>
7 changes: 0 additions & 7 deletions next.config.ts

This file was deleted.

Loading

0 comments on commit 0e52f50

Please sign in to comment.