Oliver Davies
cb79277374
Add and configure Tailwind CSS within the project, including adding npm scripts for compiling the CSS, configuring purge settings, and adding the `cssnano` library for minifying the CSS (which is run for production builds).
14 lines
372 B
Twig
14 lines
372 B
Twig
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{% block title %}Florida DrupalCamp{% endblock %}</title>
|
|
<link rel="stylesheet" href="/build/tailwind.css"/>
|
|
{% block stylesheets %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
{% block body %}{% endblock %}
|
|
{% block javascripts %}{% endblock %}
|
|
</body>
|
|
</html>
|