Skip to content

Commit

Permalink
Fix: Update web_bundle_dir after changing build engine to Vite (#873)
Browse files Browse the repository at this point in the history
  • Loading branch information
psrok1 authored Sep 5, 2023
1 parent 9152d55 commit 608d4eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mwdb/paths.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
migrations_dir = os.path.abspath(os.path.join(package_dir, "model/migrations"))

web_package_dir = os.path.abspath(os.path.join(package_dir, "web"))
web_bundle_dir = os.path.join(web_package_dir, "build")
web_bundle_dir = os.path.join(web_package_dir, "dist")

templates_dir = os.path.join(package_dir, "templates")
mail_templates_dir = os.path.join(templates_dir, "mail")

0 comments on commit 608d4eb

Please sign in to comment.