Skip to content

Commit 46b20b8

Browse files
committed
Add .pcss extension to skipped files
1 parent 4b5a17b commit 46b20b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/tailwindcss-language-server/src/project-locator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -751,5 +751,5 @@ class FileEntry {
751751
function requiresPreprocessor(filepath: string) {
752752
let ext = path.extname(filepath)
753753

754-
return ext === '.scss' || ext === '.sass' || ext === '.less' || ext === '.styl'
754+
return ext === '.scss' || ext === '.sass' || ext === '.less' || ext === '.styl' || ext === '.pcss'
755755
}

0 commit comments

Comments
 (0)