Appearance
Frontend
Images, sounds and other static assets
All static assets are located in /public
directory.
DANGER
Do not edit anything in /public/build
directory! These files are auto-generated and any changes that you make in them will be lost.
TIP
Most browsers have CTRL + F5
shortcut to refresh the page and clear cache quickly.
Vue.js assets
Frontend is split between two directories: @admin
and @web
.
Both of them use Vite to compile JavaScript assets.
Dev server
Dev server watches over the files and quickly rebuilds the project after you make any change.
Go to the frontend directory and run npm run dev
command.
Production
Production build is optimized for web.
Compile project with npm run build
.