- Updated project setup to use Vite for React application. - Removed unnecessary files and simplified configurations. - Enhanced authentication and routing in the application. - Improved code quality with ESLint and updated styles. - Added new components for better user experience, including a password recovery modal. - Updated documentation for clearer setup instructions.
19 lines
856 B
Plaintext
19 lines
856 B
Plaintext
<Project Sdk="Microsoft.VisualStudio.JavaScript.Sdk/1.0.2191419">
|
|
<PropertyGroup>
|
|
<StartupCommand>npm run dev</StartupCommand>
|
|
<JavaScriptTestRoot>src\</JavaScriptTestRoot>
|
|
<JavaScriptTestFramework>Vitest</JavaScriptTestFramework>
|
|
<!-- Allows the build (or compile) script located on package.json to run on Build -->
|
|
<ShouldRunBuildScript>false</ShouldRunBuildScript>
|
|
<!-- Folder where production build objects will be placed -->
|
|
<BuildOutputFolder>$(MSBuildProjectDirectory)\dist</BuildOutputFolder>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<None Remove="public\content\lib\**" />
|
|
<TypeScriptConfiguration Remove="public\content\lib\**" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Remove="src\components\layouts\LayoutLogin_Backup.tsx" />
|
|
<None Remove="src\components\layouts\Layout_backup.tsx" />
|
|
</ItemGroup>
|
|
</Project> |