Skip to content

Commit

Permalink
Merge pull request #21 from dardotjs/website-core-update
Browse files Browse the repository at this point in the history
feat: Website Next.js Update
  • Loading branch information
alphaolomi authored Oct 16, 2023
2 parents b350795 + 05969e6 commit 7a13594
Show file tree
Hide file tree
Showing 45 changed files with 4,576 additions and 2,620 deletions.
3 changes: 3 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "next/core-web-vitals"
}
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# local env files
.env*.local
Expand All @@ -33,3 +32,4 @@ yarn-error.log*

# typescript
*.tsbuildinfo
next-env.d.ts
34 changes: 32 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,40 @@

- Node.js and npm/yarn

### Contributions

## Getting Started

First, run the development server:

```bash
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
```

Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.

## Contributions

Feel free to open an issue if you have a question or find a bug.

### License
## License

Licensed under the MIT License. See [LICENSE](LICENSE) for more information.


## Learn More

This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).


To learn more about Next.js, take a look at the following resources:

- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.

You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
8 changes: 1 addition & 7 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
dangerouslyAllowSVG: true,
contentSecurityPolicy: "default-src 'self'; script-src 'none'; sandbox;",
},
}
const nextConfig = {}

module.exports = nextConfig
Loading

0 comments on commit 7a13594

Please sign in to comment.