diff --git a/scripts/make-dist.mjs b/scripts/make-dist.mjs index 76c3935..f472537 100644 --- a/scripts/make-dist.mjs +++ b/scripts/make-dist.mjs @@ -16,9 +16,9 @@ export { default as Dropdown } from "../src/components/Dropdown.astro"; export { default as Field } from "../src/components/Field.astro"; export { default as FieldRow } from "../src/components/FieldRow.astro"; export { default as FileUploader } from "../src/components/FileUploader.astro"; -export { default as FLVPLayer } from "../src/components/FLVPLayer.astro"; +export { default as FlvPlayer } from "../src/components/FlvPlayer.astro"; export { default as Form } from "../src/components/Form.astro"; -export { default as HLSPLayer } from "../src/components/HLSPLayer.astro"; +export { default as HLSPlayer } from "../src/components/HLSPlayer.astro"; export { default as Link } from "../src/components/Link.astro"; export { default as Modal } from "../src/components/Modal.astro"; export { default as MultiSelect } from "../src/components/MultiSelect.astro"; @@ -45,9 +45,9 @@ export const Dropdown: any; export const Field: any; export const FieldRow: any; export const FileUploader: any; -export const FLVPLayer: any; +export const FlvPlayer: any; export const Form: any; -export const HLSPLayer: any; +export const HLSPlayer: any; export const Link: any; export const Modal: any; export const MultiSelect: any; diff --git a/src/pages/hls.astro b/src/pages/hls.astro index f033f0e..65c2449 100644 --- a/src/pages/hls.astro +++ b/src/pages/hls.astro @@ -1,11 +1,11 @@ --- -import FLVPLayer from "../components/FLVPLayer.astro"; -import HLSPLayer from "../components/HLSPLayer.astro"; +import FlvPlayer from "../components/FlvPlayer.astro"; +import HLSPlayer from "../components/HLSPlayer.astro"; import ComponentLayout from "../layouts/ComponentLayout.astro"; --- - -