Initial Project
Ported by gabaaa to Vite.js with TypeScript.
ArchitectUI ReactJS is a free admin dashboard template based on Bootstrap and React frontend framework. It is easy to install, customize and use.
Download and Uncompress the theme package archive in your desired folder location.
Download and install Node.js LTS from https://nodejs.org/en/download/
npm installAfter npm finishes installing the modules from package.json you can go ahead and start the application. To do so, run the command below.
npm run devAfter the command finished, you should see a Compiled successfully! message in your terminal window. Also, a web server service will be started so you can view your app in the browser: http://localhost:5173
To create a production optimized build run the command below:
npm run buildThis created another folder in the root of your project named dist. You'll have an option to start a local web server to view your newly created production build.
In order to build for a url pathname that is not / i.e. www.example.com/ui then create an .env file at folder root and set the VITE_PUBLIC_URL.
VITE_PUBLIC_URL="/ui"npm run previewThis will start a local web server on port 4173, on which the production folder (/dist/) will be available in your browser.
