refactor: 폐쇄망 환경을 위해 UI html의 외부 CDN(Tailwind, Google Fonts)을 로컬 정적 리소스로 완전 대체
Some checks failed
Deploy to OCIWP / deploy (push) Failing after 11s
Some checks failed
Deploy to OCIWP / deploy (push) Failing after 11s
This commit is contained in:
@@ -1,12 +1,15 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="ko">
|
<html lang="ko">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>AI Tool Catalog</title>
|
<title>Tool Catalog</title>
|
||||||
<script src="https://cdn.tailwindcss.com"></script>
|
<script src="/lib/tailwindcss.js"></script>
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500;600&display=swap" rel="stylesheet">
|
|
||||||
<style>
|
<style>
|
||||||
|
:root {
|
||||||
|
--font-sans: 'Geist Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
||||||
|
--font-mono: 'Geist Mono', SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||||
|
}
|
||||||
* { font-family: 'Geist', sans-serif; }
|
* { font-family: 'Geist', sans-serif; }
|
||||||
body { background-color: #09090b; color: #f4f4f5; }
|
body { background-color: #09090b; color: #f4f4f5; }
|
||||||
.geist-mono { font-family: 'Geist Mono', monospace; }
|
.geist-mono { font-family: 'Geist Mono', monospace; }
|
||||||
|
|||||||
@@ -4,11 +4,13 @@
|
|||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>AX HUB - ChatClient</title>
|
<title>AX HUB - ChatClient</title>
|
||||||
<script src="https://unpkg.com/@tailwindcss/browser@4"></script>
|
<script src="/lib/tailwindcss.js"></script>
|
||||||
<script src="/vendor/marked.umd.js"></script>
|
<script src="/vendor/marked.umd.js"></script>
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
|
|
||||||
<style>
|
<style>
|
||||||
body { font-family: 'Inter', sans-serif; background-color: #0f1115; color: #e2e8f0; }
|
:root {
|
||||||
|
--font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
||||||
|
}
|
||||||
|
body { font-family: var(--font-sans); background-color: #0f1115; color: #e2e8f0; }
|
||||||
.scrollbar-hide::-webkit-scrollbar { display: none; }
|
.scrollbar-hide::-webkit-scrollbar { display: none; }
|
||||||
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
|
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
|
||||||
|
|
||||||
|
|||||||
@@ -1,19 +1,25 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="ko" class="dark">
|
<html lang="ko" class="dark">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>AXHUB Gateway</title>
|
<title>AX HUB - MCP API Gateway</title>
|
||||||
<script src="https://cdn.tailwindcss.com"></script>
|
<!-- 폐쇄망을 위한 로컬 스크립트 및 시스템 폰트 대체 -->
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500;600&display=swap" rel="stylesheet">
|
<script src="/lib/tailwindcss.js"></script>
|
||||||
|
<style>
|
||||||
|
:root {
|
||||||
|
--font-sans: 'Geist Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
||||||
|
--font-mono: 'Geist Mono', SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
<script>
|
<script>
|
||||||
tailwind.config = {
|
tailwind.config = {
|
||||||
darkMode: 'class',
|
darkMode: 'class',
|
||||||
theme: {
|
theme: {
|
||||||
extend: {
|
extend: {
|
||||||
fontFamily: {
|
fontFamily: {
|
||||||
sans: ['Geist', 'sans-serif'],
|
sans: ['var(--font-sans)'],
|
||||||
mono: ['Geist Mono', 'monospace']
|
mono: ['var(--font-mono)']
|
||||||
},
|
},
|
||||||
colors: {
|
colors: {
|
||||||
background: '#09090b', /* zinc-950 */
|
background: '#09090b', /* zinc-950 */
|
||||||
|
|||||||
@@ -1,15 +1,18 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="ko">
|
<html lang="ko">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Tool Playground</title>
|
<title>Tool Playground</title>
|
||||||
<script src="https://cdn.tailwindcss.com"></script>
|
<script src="/lib/tailwindcss.js"></script>
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500;600&display=swap" rel="stylesheet">
|
|
||||||
<style>
|
<style>
|
||||||
* { font-family: 'Geist', sans-serif; }
|
:root {
|
||||||
|
--font-sans: 'Geist Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
||||||
|
--font-mono: 'Geist Mono', SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||||
|
}
|
||||||
|
* { font-family: var(--font-sans); }
|
||||||
body { background-color: #09090b; color: #f4f4f5; }
|
body { background-color: #09090b; color: #f4f4f5; }
|
||||||
.geist-mono { font-family: 'Geist Mono', monospace; }
|
.geist-mono { font-family: var(--font-mono); }
|
||||||
|
|
||||||
.input-field {
|
.input-field {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|||||||
@@ -1,11 +1,16 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="ko" class="dark">
|
<html lang="ko" class="dark">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Shinhan AI MCP Gateway</title>
|
<title>AX HUB - Local Registry</title>
|
||||||
<script src="https://cdn.tailwindcss.com"></script>
|
<script src="/lib/tailwindcss.js"></script>
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Pretendard:wght@300;400;500;600;700&family=Fira+Code:wght@400;500&display=swap" rel="stylesheet">
|
<style>
|
||||||
|
:root {
|
||||||
|
--font-sans: 'Geist Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
||||||
|
--font-mono: 'Geist Mono', SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
<script>
|
<script>
|
||||||
tailwind.config = {
|
tailwind.config = {
|
||||||
darkMode: 'class',
|
darkMode: 'class',
|
||||||
|
|||||||
Reference in New Issue
Block a user