Closed meduzen closed 8 months ago
Path | Size | Loading time (3g) | Running time (snapdragon) | Total time |
---|---|---|---|---|
Everything | 281.92 KB (0%) | 5.7 s (0%) | 618 ms (+18.59% 🔺) | 6.3 s |
HTML | 4.4 KB (0%) | 88 ms (0%) | 0 ms (+100% 🔺) | 88 ms |
CSS | 3.68 KB (0%) | 74 ms (0%) | 0 ms (+100% 🔺) | 74 ms |
JS | 6.74 KB (0%) | 135 ms (0%) | 937 ms (+67.21% 🔺) | 1.1 s |
Fonts | 12.47 KB (0%) | 250 ms (0%) | 0 ms (+100% 🔺) | 250 ms |
Sounds (FLAC) | 125.78 KB (0%) | 2.6 s (0%) | 0 ms (+100% 🔺) | 2.6 s |
Sounds (WAV) | 168.79 KB (0%) | 3.4 s (0%) | 0 ms (+100% 🔺) | 3.4 s |
PR Summary
Update in Application Naming The application's default name was changed from "Sunappu" to "Burokku" reflecting this in the example environment settings file. This file also got additional comments regarding available options for the application's environment.
Enhanced Browser Launch Configuration Added explanatory comments about browser automatic opening feature when Vite, the development server, starts. Also, changed its default setting to auto-launch.
Commentary on Developmental Browser Additional instructions were added in the example environment settings file about the browser used in development and the Vite server's usage.
Improved HTTPS Configuration Updated the main configuration file (
vite.config.js
) for the Vite server with new code and comments related to configuration for HTTPS - a protocol for secure communication.New Imports in Server Configuration Introduced new codes into the server configuration file (
vite.config.js
), which now importsresolve
,homedir
, andenv
. These tools help find files, identify the home directory, and access environment variables respectively.Logic To Configure HTTPS According to Environment Advanced logic for setting HTTPS was added to
vite.config.js
. This considers environment variables which can be set differently for development, testing, or production.Refined Server Configuration The server configuration file (
vite.config.js
) now includes options to set thehost
andhttps
parameters directly. This simplifies server setup and increases flexibility.Updated Logic to Auto-Launch Browser Finally, the logic determining whether to auto-open the browser on the server start has been improved in
vite.config.js
.