Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: sample_deployment load tailwind templates in prod #81

Merged
merged 1 commit into from
Jun 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@
{% load static %}
{% load tailwind_tags %}
{% block extra_head %}
{{ block.super }}
{% tailwind_css %}
{% endblock %}
{% endblock extra_head %}
{% block body %}
<div class="fixed hidden top-5 right-5 md:block w-28">
<select id="select-theme"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ module.exports = {
*/
'../../../../allauth_ui/templates/**/*.html',

/*
* Templates from allauth_ui in production
*/
'/usr/local/lib/*/site-packages/allauth_ui/templates/**/*.html',

/**
* JS: If you use Tailwind CSS in JavaScript, uncomment the following lines and make sure
* patterns match your project structure.
Expand Down
Loading