We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20905b5 commit 69b2e79Copy full SHA for 69b2e79
packages/tailwindcss-language-server/src/language/css.ts
@@ -3,7 +3,10 @@ import { createConnection, ProposedFeatures } from 'vscode-languageserver/node'
3
import { interceptLogs } from '../util/logs'
4
import { CssServer } from './css-server'
5
6
-let connection = createConnection(ProposedFeatures.all)
+let connection =
7
+ process.argv.length <= 2
8
+ ? createConnection(ProposedFeatures.all, process.stdin, process.stdout)
9
+ : createConnection(ProposedFeatures.all)
10
11
interceptLogs(console, connection)
12
0 commit comments