Skip to content

Commit

Permalink
Merge pull request #1 from Syaw0/release-1.0.0
Browse files Browse the repository at this point in the history
Release 1.0.0
  • Loading branch information
Syaw0 authored Apr 14, 2023
2 parents d3dc4d0 + 94171f3 commit 066f157
Show file tree
Hide file tree
Showing 315 changed files with 20,102 additions and 1 deletion.
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"
}
41 changes: 41 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@

.env
src/modules/artist/service/profile/repo/
.todo
src/modules/artwork/service/artworkImage/repo


# 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*
.pnpm-debug.log*

# local env files
.env*.local

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Art.me
# Art Wave
The Art Social Media .
7 changes: 7 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
transpilePackages: ["ui"],
};

module.exports = nextConfig;
Loading

0 comments on commit 066f157

Please sign in to comment.