timgremore's picture
chore: Rename app to Medicode
3f219b5
raw
history blame
412 Bytes
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