Settings

Django Tailwind comes with preconfigured settings. You can override them in the settings.py of your Django project.

TAILWIND_APP_NAME

This defines the Tailwind theme Django app containing your Tailwind CSS styles. I prefer to name such an app 'theme'. You should generate the app during the installation phase by running the following command:

python manage.py tailwind init

Please refer to the Installation section for more information on the installation process.

TAILWIND_DEV_MODE

Determines whether the browser-sync snippet is added to the page via the {% tailwind_css %} tag. It is set to DEBUG by default, but you can override this value.

NPM_BIN_PATH

This defines a path to the npm executable in your system.

Tailwind CSS requires you to have Node.js installed on your machine. Node.js is a JavaScript runtime that allows running JavaScript code outside a browser. Most of the current frontend tools depend on Node.js.

If you don’t have Node.js installed on your machine, please follow installation instructions from the official Node.js page.

The default value is:

NPM_BIN_PATH = 'npm'

TAILWIND_CSS_PATH

This defines a path to the generated Tailwind CSS stylesheet. If you have created a theme app via the python manage.py tailwind init command, chances are you don’t need to change this value.

However, if you integrated Tailwind CSS in another way or want to use a CDN version of the bundle, you might want to change the path.

The default value is:

TAILWIND_CSS_PATH = 'css/dist/styles.css'