Skip to content

Commit 43a3782

Browse files
committed
release web v1
1 parent 9b901f6 commit 43a3782

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+1974
-944
lines changed

.editorconfig

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[*]
2+
indent_size = 4
3+
indent_style = space

.prettierrc

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"arrowParens": "always",
3+
"bracketSameLine": false,
4+
"bracketSpacing": true,
5+
"embeddedLanguageFormatting": "auto",
6+
"htmlWhitespaceSensitivity": "css",
7+
"insertPragma": false,
8+
"jsxSingleQuote": false,
9+
"printWidth": 120,
10+
"proseWrap": "preserve",
11+
"quoteProps": "as-needed",
12+
"requirePragma": false,
13+
"semi": true,
14+
"singleQuote": true,
15+
"tabWidth": 4,
16+
"trailingComma": "all",
17+
"useTabs": false,
18+
"vueIndentScriptAndStyle": false
19+
}

next.config.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
/** @type {import('next').NextConfig} */
22
const nextConfig = {
3-
images: {
4-
domains: ["skillicons.dev"],
5-
formats: ["image/avif", "image/webp"],
6-
},
3+
images: {
4+
domains: ['i.ibb.co'],
5+
formats: ['image/avif', 'image/webp'],
6+
},
7+
reactStrictMode: true,
78
};
89

910
module.exports = nextConfig;

0 commit comments

Comments
 (0)