Skip to content

Commit 9bdbad1

Browse files
committed
refractor blog and reactzoom feature
2 parents 409b25c + 68e7a06 commit 9bdbad1

15 files changed

Lines changed: 1550 additions & 472 deletions

File tree

docusaurus.config.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -302,10 +302,10 @@ const config: Config = {
302302
EMAILJS_TEMPLATE_ID: process.env.EMAILJS_TEMPLATE_ID || "",
303303
algoliaSiteSearch: hasAlgoliaSiteSearch
304304
? {
305-
applicationId: algoliaAppId,
306-
apiKey: algoliaSearchApiKey,
307-
indexName: algoliaIndexName,
308-
}
305+
applicationId: algoliaAppId,
306+
apiKey: algoliaSearchApiKey,
307+
indexName: algoliaIndexName,
308+
}
309309
: null,
310310
hooks: {
311311
onBrokenMarkdownLinks: "warn",

eslint.config.mjs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,12 @@ export default [
3535
files: ["**/*.{js,jsx}"],
3636
ignores: ["node_modules/", "build/", ".docusaurus/", "static/", "dist/"],
3737
languageOptions: {
38+
parser: tsParser,
39+
parserOptions: {
40+
ecmaVersion: 2021,
41+
sourceType: "module",
42+
ecmaFeatures: { jsx: true },
43+
},
3844
globals: {
3945
window: "readonly",
4046
document: "readonly",

0 commit comments

Comments
 (0)