defmodule MedicodeWeb.Storybook do @moduledoc """ Sets up Phoenix Storybook for use within the app. """ use PhoenixStorybook, otp_app: :medicode_web, content_path: Path.expand("../../storybook", __DIR__), # assets path are remote path, not local file-system paths css_path: "/assets/storybook.css", js_path: "/assets/storybook.js", sandbox_class: "medical-transcription-web" end