Once you've installed dependencies with npm install
, start a development server:
npm run dev
Or to expose the server to your local network (for testing on mobile, for example):
npm run dev -- --host
Note Sometimes when editing JavaScript classes, they will not update until you stop and restart the dev server.
graph LR
A[Base Shape] --> B[Rotate]
B --> C[Scale]