Installation
Setting up Preline UI in a Astro project using Tailwind CSS.
Please note that the plugin has been tested with the latest version of the framework (v3.5.7). The framework was installed using the standard npm create astro@latest
command.
If you are using your own project structure, be mindful of file paths!
Astro is the all-in-one web framework designed for speed. If you haven't set up Tailwind CSS yet, check out Astro Tailwind CSS installation guides.
Install preline
via npm or yarn.
// Terminal or Shell
npm install preline // or yarn add preline
Add the path to Preline UI JavaScript files in your tailwind.config.mjs
file.
// tailwind.config.mjsmodule.exports = { content: [ './node_modules/preline/preline.js', ], plugins: [ require('preline/plugin'), ],}
Include Preline UI JavaScript to the projects_root_directory/src/layouts/Layout.astro
file.
Check out this section for community-shared tips and tricks. It's a spot for finding those handy hacks and solutions that enhance your experience with Preline UI.