Skip to content

Commit

Permalink
Initialize Project Setup (#2)
Browse files Browse the repository at this point in the history
* initial project setup w/ create-next-app

* Remove Next.js boilerplate

* Configure ESLint/Prettier

* Configure SSG/Deployment

* Move eslint to devDependencies
  • Loading branch information
angel1254mc authored Oct 8, 2023
1 parent 7fa699d commit ed3bf8b
Show file tree
Hide file tree
Showing 11 changed files with 6,118 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
module.exports = {
extends: [
"airbnb",
"airbnb/hooks",
"airbnb-typescript",
"next/core-web-vitals",
"plugin:@typescript-eslint/recommended",
"plugin:unicorn/recommended",
"plugin:prettier/recommended",
],
parserOptions: {
project: "./tsconfig.json",
},
};
35 changes: 35 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

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

# local env files
.env*.local

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts
6 changes: 6 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "export",
};

module.exports = nextConfig;
Loading

0 comments on commit ed3bf8b

Please sign in to comment.