-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
SME\avagy
committed
Mar 3, 2024
1 parent
646db9a
commit 265c1d2
Showing
15 changed files
with
187 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,19 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Zoomment.com Widget</title> | ||
</head> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Zoomment.com Widget</title> | ||
</head> | ||
|
||
<body> | ||
<div id="zoomment" data-emotions="❤️,😀,🪄,🥸,💡,🤔,💩,😢,😢,😢,😢,😢" data-api-url="http://localhost:9547/api" | ||
data-theme="light" data-language="en"></div> | ||
<script type="module" src="src/index.js"></script> | ||
</body> | ||
|
||
</html> | ||
<body> | ||
<div | ||
id="zoomment" | ||
data-emotions="❤️,😀,🪄,🥸,💡,🤔,💩,😢,😢,😢,😢,😢" | ||
data-api-url="http://localhost:9547/api" | ||
data-theme="light" | ||
data-language="en" | ||
></div> | ||
<script type="module" src="src/index.tsx"></script> | ||
</body> | ||
</html> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "es5", | ||
"lib": ["dom", "dom.iterable", "esnext"], | ||
"allowJs": true, | ||
"skipLibCheck": true, | ||
"esModuleInterop": true, | ||
"allowSyntheticDefaultImports": true, | ||
"strict": true, | ||
"forceConsistentCasingInFileNames": true, | ||
"module": "esnext", | ||
"moduleResolution": "node", | ||
"resolveJsonModule": true, | ||
"isolatedModules": true, | ||
"noEmit": true, | ||
"jsx": "react", | ||
"baseUrl": ".", | ||
"paths": { | ||
"components/*": ["src/components/*"], | ||
"providers/*": ["src/providers/*"], | ||
"utils/*": ["src/utils/*"], | ||
"locales/*": ["src/locales/*"] | ||
} | ||
}, | ||
"include": ["src"] | ||
} |