Laravel 10 + Vite connecting to Sass Tailwind

Merging Laravel Vite Sass Tailwind

2024-03-02 20:30:22

The article offers a simple way using which PowerShell commands you can easily connect the Tailwind CSS style sheet for the Laravel 9, 10 framework.

Warning! This list of teams is current as of February 2024. At the time of writing this article, the following versions are in use:

Laravel since version 9 uses the Vite builder, and it in turn provides built-in support for preprocessors

A simple sequence of actions is described below.

  1. Via the command line we install the preprocessor, in this example we select “sass”, although “less” and “stylus” are also available if desired. The team can be found on the official website page vitejs.dev/guide/features.html#css-pre-processors
  2. Create a new folder, and in it a file 'resources/scss/app.scss' - a new line must be added to the file vite.config.js
  3. Writing the installation command
  4. On the welcome page, you can remove all content inside the page body tags, as well as the style line body, style Next in tags head you need to enter the connection string
  5. Now in the body of the welcome file we can write content and set block classes. Class descriptions are recorded in the file 'resources/scss/app.scss' However, in order for the styles to be displayed on the page, you must specify the launch command
  6. In another command line tab, launch the framework server and follow the link
  7. On the official page tailwindcss.com/docs/guides/laravel We find commands for installing the style library. But before downloading them, you need to pause the server. Please note that in the file package.json new dependencies with the specified names have been formed
  8. Create a new file postcss.config.js
  9. Two configuration files appeared in our project. On the same page of the official website we find the code that needs to be added to the file tailwind.config.js
  10. Changes need to be made to the file resources\css\app.css. On the same page of the official website we find a list that we add to the specified address. Please note that this entry can be left at the top of the file resources\scss\app.scss
  11. After the changes have been made, run the vite compiler again

1

npm add -D sass

2

vite.config.js

export default defineConfig({
     plugins: [ 
          laravel({ 
               input: [
                   'resources/css/app.css',
                   'resources/js/app.js',
                   'resources/scss/app.scss'
                   ], 
     refresh: true,
          }),
     ],
}); 

3

npm install

4

@vite(['resources/css/app.css', 'resources/js/app.js', 'resources/scss/app.scss'])

5

npm run dev

6

php artisan serve

7

Ctrl + C

npm install -D tailwindcss postcss autoprefixer

8

npx tailwindcss init -p

9

tailwind.config.js

/** @type {import('tailwindcss').Config} */
export default {
  content: [
    "./resources/**/*.blade.php",
    "./resources/**/*.js",
    "./resources/**/*.vue",
  ], //add this lines
  theme: {
    extend: {},
  },
  plugins: [],
}

10

resources\css\app.css

@tailwind base;
@tailwind components;
@tailwind utilities;

11

npm run dev
Simple PowerShell commands for working with files Basic PowerShell Commands Every PHP Developer Should Know___ Creating a table in a Laravel database How to create or drop a table when working with the Laravel framework?___ Firewall check disabled How can I check if my firewall is still running after I turn it off?___ Find out the port status One line will display the port status in the terminal___ Opening ports using a terminal Windous command line will help you open the port___ Firewall open port Disable port blocking in the firewall program window___ Learn about open and closed ports What ports are used? Find out on Windows10 via command line___ Composer program installation Composer download – what is needed to run the program___ Viewport meta tag Viewport is a necessary tag to display the HTML page correctly___ Personnel leak Ukraine is losing 1 thousand IT specialists per month___ Indexing images for search engines Indexing images on a website can be used for promotion___ Freelancer's first order Freelancing for beginners - what do you need to know to get your first order?___
The richest people on the planet are billionaires Java for the Pokemon Go application and profit from the game How many millionaires in the world in 2023 Differences in the thinking of millionaires and billionaires - basic qualities-4 _ Simple PowerShell commands for working with files Growth and decline in the number of millionaires in the world from 2021 to 2023+0 _ Merging Laravel Vite Sass Tailwind Average earnings of a Java programmer in Germany – expectations and reality+1 _ Pokemon Go profit Simple Basic Git Commands for Beginners+2 _ Git for Beginners Programmer's income in 2023 in Barcelona - overview of Spain
Freelancer's first order Freelancing for beginners - what do you need to know to get your first order?___ Composer program installation Composer download – what is needed to run the program___
Shutterstock earnings A realistic view of Shutterstock income for young creators___ How can a programmer obtain German citizenship? German citizenship – new rules simplify the procedure for a programmer___ Changing the interface language in the free version of the Cakewalk music editor___ Simple HTML code for embedding a YouTube video___ What does the Economist magazine cover in 2025 encrypt?___ Russian programmers left the country en masse in 2022-2023___ Three visas that will allow a programmer to come to the USA for work___