🔧 웹훅 URL을 HTTPS로 수정
Some checks failed
🚀 Deploy - Demo / deployment (push) Has been cancelled

- 웹훅 URL을 https://admin.youtooplay.com/webhook로 변경
- Nginx 리버스 프록시 설정 파일 추가
- 배포 가이드 업데이트
This commit is contained in:
2025-10-01 01:47:51 +09:00
parent f331b52e64
commit 83b162d2bd
713 changed files with 98449 additions and 38378 deletions

View File

@@ -0,0 +1,66 @@
import { toRef, computed, createVNode } from 'vue';
import { g as genericComponent, p as propsFactory, F as provideTheme, at as useTextColor, j as convertToUnit, a as useRender, K as makeThemeProps, m as makeComponentProps } from './server.mjs';
const makeVDividerProps = propsFactory({
color: String,
inset: Boolean,
length: [Number, String],
opacity: [Number, String],
thickness: [Number, String],
vertical: Boolean,
...makeComponentProps(),
...makeThemeProps()
}, "VDivider");
const VDivider = genericComponent()({
name: "VDivider",
props: makeVDividerProps(),
setup(props, _ref) {
let {
attrs,
slots
} = _ref;
const {
themeClasses
} = provideTheme(props);
const {
textColorClasses,
textColorStyles
} = useTextColor(toRef(props, "color"));
const dividerStyles = computed(() => {
const styles = {};
if (props.length) {
styles[props.vertical ? "height" : "width"] = convertToUnit(props.length);
}
if (props.thickness) {
styles[props.vertical ? "borderRightWidth" : "borderTopWidth"] = convertToUnit(props.thickness);
}
return styles;
});
useRender(() => {
const divider = createVNode("hr", {
"class": [{
"v-divider": true,
"v-divider--inset": props.inset,
"v-divider--vertical": props.vertical
}, themeClasses.value, textColorClasses.value, props.class],
"style": [dividerStyles.value, textColorStyles.value, {
"--v-border-opacity": props.opacity
}, props.style],
"aria-orientation": !attrs.role || attrs.role === "separator" ? props.vertical ? "vertical" : "horizontal" : void 0,
"role": `${attrs.role || "separator"}`
}, null);
if (!slots.default) return divider;
return createVNode("div", {
"class": ["v-divider__wrapper", {
"v-divider__wrapper--vertical": props.vertical,
"v-divider__wrapper--inset": props.inset
}]
}, [divider, createVNode("div", {
"class": "v-divider__content"
}, [slots.default()]), divider]);
});
return {};
}
});
export { VDivider as V };