Building - connectivedx/Unslated GitHub Wiki
When running dev, the files are being built into memory and not written to disk. To write files to disk you must run a production build:
npm run build
or
yarn build
Running a production build will bundle / compress Unslated src/
files together and write them to a newly created dist/
folder. It's recommended you do not version control the dist folder, and is why it is by default set to be ignored in the git.ignore file.