英文:
How to enable CSS intellisense in JSX files in VSCode
问题
我刚刚获得了一台新的工作电脑,并正在设置开发环境,但似乎在 React.jsx 文件中无法让我的 Intellisense 正常工作。
我正在使用 NextJs styled JSX 中的 CSS-in-JS,链接在这里:https://github.com/vercel/styled-jsx
我已经尝试了很多搜索,快要失去理智了...
感谢任何帮助!
英文:
I just got a new work computer, and setting up the dev environment, I cannot seem to get my Intellisense to work while in a React.jsx file
I'm using CSS-in-JS with NextJs styled JSX https://github.com/vercel/styled-jsx
I've tried googling a lot and running out of sanity...
Thanks for any help!
答案1
得分: 0
这个扩展起到了作用
styled-jsx 语言服务器
https://marketplace.visualstudio.com/items?itemName=Divlo.vscode-styled-jsx-languageserver
英文:
This extension did the trick
styled-jsx Language Server
https://marketplace.visualstudio.com/items?itemName=Divlo.vscode-styled-jsx-languageserver
答案2
得分: 0
为了获得语法突出显示和自动补全功能,您需要安装两个扩展:
- 语法突出显示 - vscode-styled-jsx
- 代码补全 - styled-jsx 语言服务器
英文:
In order to get syntax highlighting & autocomplete, you need to install two extensions:
- Syntax highlighting - vscode-styled-jsx
- Code completion - styled-jsx Language Server
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论