You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Marko97IT This doesn't seem to include a dev mode setup. How does development work with ASP.NET Core? Do you always need a full build of your website for every local change?
@Marko97IT This doesn't seem to include a dev mode setup. How does development work with ASP.NET Core? Do you always need a full build of your website for every local change?
Simply, every time I make a change to the project and build, the css is recompiled. This is useful when you work on cshtml files because it is a dynamic update and takes just a few seconds.
Hm, I see. Doing a full build from scratch is super wasteful though, if we are able to use the CLI --watch mode instead things would take milliseconds at most. Let me find some time next week to look into it 👍
Please, in the documentation add the support for ASP.NET Web App Core in Framework Guides. I tried it and works good.
Step 1.
Run this comand in the project folder.
Step 2.
In
wwwroot/css/site.css
add this row in the first line.Step 3.
Edit the package.json file and paste it after
dependencies
.Step 4.
Edit the .csproj file and add this.
Step 5.
In the _Layout.cshtml file add the reference of Tailwind.
Step 6.
Build and try.
The text was updated successfully, but these errors were encountered: