How To Build ?

Explanation of build system

How to build after edits?

How to Build the UI (Vue.js) for codemred-loadingscreen

To apply any changes made to the UI, you need to generate a new build. Since the UI is written in Vue.js, this requires Node.js to be installed.


1

Make Sure Node.js is Installed

Download it from the official site: https://nodejs.org/ Recommended version: LTS (Long-Term Support)

2

Open your terminal and go to the UI directory:

cd resources/[your-script-locale]/codemred-loadingscreen/web
3

Install Dependencies (Only Once)

npm install
4

Build The Project

npm run build
5

Restart Server

Restart your server and you're good to go!

Last updated