Spring Boot 3.5 / Java 17 + React 19 + PostgreSQL 단일 JAR. 멀티테넌트(LGINNOTEK/LGIT/EMART/ZIOINFO), HCore 게이트웨이 관제, POS 연동 가격 자동 업데이트, Ollama 온프레미스 AI 알람 분석·POS 분류. 레거시 ESN 6개 프로젝트(Spring Boot 1.5/Java 8) 현대화 통합. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
20 lines
430 B
JavaScript
20 lines
430 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./index.html', './src/**/*.{ts,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
// NCloud 콘솔 스타일 다크 테마
|
|
ink: '#0b0f17',
|
|
panel: '#131927',
|
|
card: '#1a2234',
|
|
edge: '#26304a',
|
|
brand: '#00a0c8',
|
|
brand2: '#005a8c',
|
|
accent: '#3ddc97',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|