Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cshaa/mathjs-vue-test
https://github.com/cshaa/mathjs-vue-test
Last synced: about 5 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/cshaa/mathjs-vue-test
- Owner: cshaa
- Created: 2021-08-15T16:59:47.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-08-15T17:06:13.000Z (over 3 years ago)
- Last Synced: 2025-01-17T21:12:55.058Z (8 days ago)
- Language: Vue
- Size: 169 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mathjs-vue-test
> math.js + Vue
## Commands
You can replace `yarn` with `npm run` here.
```bash
# build for production
yarn build# development mode
yarn dev# run unit tests
yarn test# serve the bundled dist folder in production mode
yarn serve
```## Polyfills
By default we only polyfill `window.Promise` and `Object.assign`. You can add more polyfills in `./src/polyfills.js`.
## Analyze bundle size
Run `yarn report` to get a report of bundle size which helps you:
- Realize what's really inside your bundle
- Find out what modules make up the most of it's size
- Find modules that got there by mistake
- Optimize it!## Progress Web App
Your app is now offline-ready (only in production bundle), which means you can visit it without network.
Here we use a default [manifest.json](./static/manifest.json) to configurure your pwa, for example, to enable *Add to Home Screen* feature on Android. It will be copied directly to `./dist/manifest.json`.
For all the available options, please head to [poi-preset-offline](https://github.com/egoist/poi/tree/master/packages/poi-preset-offline#api).
---
This project is generated by [create-vue-app](https://github.com/vue-land/create-vue-app).