How to ignore gitignore. Folder at the beginning

I need to ignore all files in the .nuxt folder

writing: .nuxt / and .nuxt / in .gitignore has no effect

this is my .gitignore file code

.DS_Store
node_modules/
.nuxt/
npm-debug.log*
yarn-debug.log*
yarn-error.log*

-sharp Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln

I want to know how to set ignore through the .gitignore file. Folder at the beginning

Git
Apr.09,2021

-sharp .
.*
-sharp  .gitignore 
!/.gitignore
Menu