Skip to content
This repository was archived by the owner on Sep 1, 2025. It is now read-only.

This is my personal Note And I Through this note's going to help others people as well so if you find anything useful Please let me know, just give me a star if you want And this note is going to update every time, So Stay tuned, thanks! 🥰

Notifications You must be signed in to change notification settings

yeasin2002/Programming-Resources-And-Notes

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

initialize npm empty file

npm init -y

Install postcss

npm install -D  postcss  postcss-cli autoprefixer postcss-import postcss-nesting

use this postcss.config.cjs file

module.exports = {
  plugins: [
    require("postcss-import"),
    require("autoprefixer"),
    require("postcss-nesting"),
  ],
};

use this in package.json on script tag

you can use deferent file path as you want But make sure to writw correct path here

"build": "postcss ./src/style.pcss  -o ./public/style.css -w"

Write This code in workspace setting.json

"postcss.validate": false,
"emmet.includeLanguages": {
"postcss": "css",
}

Now Open Terminals And Write This command And Hit Enter

npm run  build 

More Info:

Some PostCSS plugging

Tutorials

About

This is my personal Note And I Through this note's going to help others people as well so if you find anything useful Please let me know, just give me a star if you want And this note is going to update every time, So Stay tuned, thanks! 🥰

Topics

Resources

Stars

Watchers

Forks