Maps and POI made easy.
Go to file
Benjamin Bouvier fd4ba2a8bb VueJS rewrite; 2019-03-24 20:53:45 +01:00
src VueJS rewrite; 2019-03-24 20:53:45 +01:00
static VueJS rewrite; 2019-03-24 20:53:45 +01:00
.editorconfig VueJS rewrite; 2019-03-24 20:53:45 +01:00
.gitignore VueJS rewrite; 2019-03-24 20:53:45 +01:00
README.md VueJS rewrite; 2019-03-24 20:53:45 +01:00
index.ejs VueJS rewrite; 2019-03-24 20:53:45 +01:00
package.json VueJS rewrite; 2019-03-24 20:53:45 +01:00
poi.config.js VueJS rewrite; 2019-03-24 20:53:45 +01:00
yarn.lock VueJS rewrite; 2019-03-24 20:53:45 +01:00

README.md

app

My posh Vue project

Commands

You can replace yarn with npm run here.

# 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 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.


This project is generated by create-vue-app.