feat: basic routing and fav nav

This commit is contained in:
2018-09-13 19:56:44 -07:00
parent 1c2df7733d
commit 3b39345fa6
8 changed files with 283 additions and 203 deletions

View File

@@ -4,5 +4,9 @@ const path = require('path');
module.exports = {
entry: path.resolve(__dirname, 'src/index.mjs'),
outDir: 'dist',
plugins: [require('@poi/plugin-vue-static')()],
plugins: [
require('@poi/plugin-vue-static')({
routes: ['/', '/home', '/favorites'],
}),
],
};