- Added CORS allowed origins in config.compose.yaml to enable cross-origin requests from the web service. - Updated docker-compose.yml to include a new web service with build context and port mapping for local development. - Enhanced gateway.go to support additional HTTP methods in CORS responses. - Updated README.md to document the new web service and its configuration requirements.
18 lines
393 B
TypeScript
18 lines
393 B
TypeScript
import Root from "./alert.svelte";
|
|
import Description from "./alert-description.svelte";
|
|
import Title from "./alert-title.svelte";
|
|
import Action from "./alert-action.svelte";
|
|
export { alertVariants, type AlertVariant } from "./alert.svelte";
|
|
|
|
export {
|
|
Root,
|
|
Description,
|
|
Title,
|
|
Action,
|
|
//
|
|
Root as Alert,
|
|
Description as AlertDescription,
|
|
Title as AlertTitle,
|
|
Action as AlertAction,
|
|
};
|