Skip to content

Commit

Permalink
first
Browse files Browse the repository at this point in the history
  • Loading branch information
doniyor-shamsiddinov committed Feb 14, 2024
1 parent 5e47a96 commit af4f871
Show file tree
Hide file tree
Showing 124 changed files with 29,623 additions and 0 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"
}
36 changes: 36 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js
.yarn/install-state.gz

# 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
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"cSpell.words": ["IMARAT", "Versace"]
}
21 changes: 21 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/** @type {import('next').NextConfig} */
const path = require("path");

module.exports = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'admin.imaratgroup.uz',
port: '',
pathname: '/uploads/**',
},
],
},
sassOptions: {
includePaths: [path.join(__dirname, "styles")],
},
typescript: {
ignoreBuildErrors: true,
},
};
Loading

0 comments on commit af4f871

Please sign in to comment.