Install Preline UI with React + Vite using Tailwind CSS
Install Preline UI with Tailwind CSS in React + Vite projects, including JavaScript plugin setup, Vite configuration, app scripts, and optional dependencies.
Installation
Please note that the plugin has been tested with React 19.2.0 and Vite 7.3.1. The project was created using the npm create vite@latest <project name> -- --template react-ts command.
If you are using your own project structure or a different version, pay attention to the file paths and features of your version!
React + Vite quick setup
If Tailwind CSS is not set up yet, start with the official React + Vite Tailwind CSS guide first.
Some components rely on third-party libraries. The setup below assumes full use of Preline UI, including those optional dependencies. If you do not need those components, you can trim the related packages and configuration.
-
Install Preline UI
Install
prelinewith your preferred package manager.Terminalnpm install prelinePreline UI uses the Tailwind CSS Forms plugin across form components. If you have not added it yet, install it with
npm install -D @tailwindcss/forms. -
Include Preline CSS
Import Preline into your
index.cssfile, for exampleproject_root_directory/src/index.css.index.css@import "tailwindcss"; @import "preline/variants.css"; @source "../node_modules/preline/dist/*.js"; /* Optional Preline UI Datepicker Plugin */ /* @import "preline/src/plugins/datepicker/styles.css"; */ /* Plugins */ /* @plugin "@tailwindcss/forms"; */ /* Preline Themes */ @import "preline/css/themes/theme.css";See the Theme docs to learn more about Preline Themes.
-
Add type definitions for Preline
Create a
global.d.tsfile for the shared window typings, for exampleproject_root_directory/src/global.d.ts.global.d.tsimport type { JQueryStatic } from "jquery"; import type _ from "lodash"; import type Dropzone from "dropzone"; import type noUiSlider from "nouislider"; import type DataTables from "datatables.net"; import type { Calendar } from "vanilla-calendar-pro"; declare global { interface Window { $: JQueryStatic jQuery: JQueryStatic _: typeof _ Dropzone: typeof Dropzone noUiSlider: typeof noUiSlider DataTable: typeof DataTables VanillaCalendarPro: typeof Calendar HSStaticMethods: { autoInit: (collection?: string[]) => void } } }; export {}; -
Add external libraries
Import and attach the required external libraries in
project_root_directory/src/main.tsx.main.tsx... import $ from "jquery"; import _ from "lodash"; import Dropzone from "dropzone"; import noUiSlider from "nouislider"; import DataTable from "datatables.net"; import { Calendar } from "vanilla-calendar-pro"; window.$ = $; window.jQuery = $; window._ = _; window.Dropzone = Dropzone; window.noUiSlider = noUiSlider; window.DataTable = DataTable; window.VanillaCalendarPro = Calendar; ... import("preline").then(() => { createRoot(document.getElementById("root")!).render( ... ); }); -
Initialize Preline UI
Re-run Preline UI initialization after route changes in your app entry flow, for example in
project_root_directory/src/App.tsx.App.tsximport { useEffect } from 'react'; import { useLocation } from 'react-router-dom'; ... function App() { const location = useLocation(); useEffect(() => { window.HSStaticMethods.autoInit(); }, [location.pathname]); return ( ... ) } export default App
Optional Preline UI styles
Preline UI ships with a small set of opinionated base styles that can be applied to components by default. If you want those defaults in your project, include them in your CSS. These styles shipped by default in Tailwind CSS v3, so they remain available as an optional layer in Preline UI.
/* Adds pointer cursor to buttons */
@layer base {
button:not(:disabled),
[role="button"]:not(:disabled) {
cursor: pointer;
}
}
/* Defaults hover styles on all devices */
@custom-variant hover (&:hover);
Specific guide
Continue with a focused guide for wiring Preline UI JavaScript plugins into this framework.