├── src
├── assets
│ ├── stylesheets
│ │ └── global.scss
│ ├── vue.png
│ ├── webpack.png
│ └── fontello
│ │ ├── font
│ │ ├── fontello.eot
│ │ ├── fontello.ttf
│ │ ├── fontello.woff
│ │ ├── fontello.woff2
│ │ └── fontello.svg
│ │ └── css
│ │ └── fontello.css
├── pages
│ ├── 404.vue
│ └── index.vue
├── app.vue
├── index.js
├── index.ejs
└── router.js
├── postcss.config.js
├── static
└── favicon.jpeg
├── .gitignore
├── .eslintrc.js
├── .babelrc
├── package.json
└── README.md
/src/assets/stylesheets/global.scss:
--------------------------------------------------------------------------------
1 | @charset "utf-8";
2 |
--------------------------------------------------------------------------------
/src/pages/404.vue:
--------------------------------------------------------------------------------
1 |
2 |
6 |
9 | 13 | Learn more on lmk123/webpack-boilerplate 14 |
15 |