vue-cli is completely deprecated and prevents this starter app from running in StackBlitz. I'm not using any 3.0 features so we could downgrade to 2.0 without issue.
There are A LOT of unused code files, such as themes and xlarge customer data that could be trimmed up in a future update. StackBlitz crashes right after displaying because we have tons of files in the public directory, which Vite copies to cache in parallel and that overwhelms browser Node FS. A quick fix is to delete the images folder or most of it's files and use the github hosted ones instead.
vue-cli is completely deprecated and prevents this starter app from running in StackBlitz. I'm not using any 3.0 features so we could downgrade to 2.0 without issue.
Here it is running on StackBlitz https://stackblitz.com/edit/public-sakai?file=package.json
There are A LOT of unused code files, such as themes and xlarge customer data that could be trimmed up in a future update. StackBlitz crashes right after displaying because we have tons of files in the
public
directory, which Vite copies to cache in parallel and that overwhelms browser Node FS. A quick fix is to delete the images folder or most of it's files and use the github hosted ones instead.