Skip to content

Commit

Permalink
Merge pull request #12 from waszkiewiczja/feature
Browse files Browse the repository at this point in the history
try deploy
  • Loading branch information
waszkiewiczja authored Feb 11, 2024
2 parents 47f7c13 + 3e6a453 commit 610c82b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 18 deletions.
3 changes: 1 addition & 2 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
// output: 'export',
output: 'export',
images: { unoptimized: true },
distDir: 'build',
};

module.exports = nextConfig;
2 changes: 1 addition & 1 deletion src/components/main/projects/Memory.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export const Memory: React.FC = () => {
width={0}
height={0}
sizes="100vw"
style={{ width: '500', height: 'auto' }}
style={{ width: '100%', height: 'auto' }}
></Image>
)}
</Item>
Expand Down
21 changes: 6 additions & 15 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
{
"compilerOptions": {
"target": "es6",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
Expand All @@ -19,24 +15,19 @@
"incremental": true,
"plugins": [
{
"name": "next"
}
"name": "next",
},
],
"paths": {
"@/*": [
"./src/*"
]
}
"@/*": ["./src/*"],
},
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"jest.config.ts",
"build/types/**/*.ts"
],
"exclude": [
"node_modules"
]
"exclude": ["node_modules"],
}

0 comments on commit 610c82b

Please sign in to comment.