Monorepo and language service issue

Hi,

New to jetbrain solution here, my solution have 2 application 

/app/web (vuejs)

/app/backend (.net core)

 

In “app/web" language services (plugins like Vue & Tailwind) not working but if open directly “app/web” with Rider i got everything working perfectly fine.

 

Nodejs path set, tailwind config done and i create .ws-context at root but nothing change.

{
  "bo/pages/src/**/*.vue": {
    "framework": "vue"
  }
}
0
2 comments

May I know if you are using ASP.NET Core SPA features to integrate the frontend project into MSBuild workflow or simply add the project in the solution file?

Rider will try to detect the package.json in your project directory and start language services accordingly. But it has to be added in .sln or .csproj file. 

From the ASP.NET Core SPA standard perspective, the frontend project should be placed in ClientApp folder, but you don't have to refer it if you don't want to use SPA proxy.

If you still cannot figure it out, please share a sample repo that reproduces your issue, we can help further on it.

0

The informations you gave me led me on the right path

I simply right click on my solution and Add → Existing Folder (target my vue folder)

Thx a lot Tao Sun 

1

Please sign in to leave a comment.