Skip to content

Instantly share code, notes, and snippets.

View yeasin-2002's full-sized avatar
:octocat:
Be Unstoppable, Never Stop Learning

Md Kawsar Islam Yeasin yeasin-2002

:octocat:
Be Unstoppable, Never Stop Learning
View GitHub Profile
@yeasin-2002
yeasin-2002 / gist:7b7f79a6c3dc07945b4af822e80cdf7c
Last active May 3, 2024 09:13
VS Code auto suggestions issue fix

for nextjs:

{
  "include": ["**/*"],
  "exclude": ["node_modules", "**/node_modules", "dist", "build", ".next"],
  "compilerOptions": {
    "paths": {
      "@/*": ["./*"]
 },
"use strict";
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
hyperBorder: {
// borderColors: ["random", "random"],
borderColors: ["#fc1da7", "#fba506"],
borderWidth: "8px",

Tailwindcss install Stap by Stap by postCSS

install process

initialize npm empty file
npm init -y
install tailwindcss by postcss with auto prefixed

Initialize npm empty file

npm init -y

Install postcss

npm install -D postcss postcss-cli autoprefixer cssnano cssnano-preset-advanced