Skip to content

Commit

Permalink
fix document image missing and path not correct issue
Browse files Browse the repository at this point in the history
  • Loading branch information
wxsms committed Mar 30, 2017
1 parent 49cabed commit 83ba6bc
Show file tree
Hide file tree
Showing 18 changed files with 23 additions and 20 deletions.
2 changes: 1 addition & 1 deletion build/webpack.base.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ module.exports = {
test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
loader: 'url-loader',
query: {
limit: 10000,
limit: 20000,
name: utils.assetsPath('img/[name].[hash:7].[ext]')
}
},
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<!DOCTYPE html><html><head><meta charset="utf-8"><link rel="shortcut icon" type="image/png" href="/static/images/logo.png"><meta name="viewport" content="user-scalable=no,width=device-width,initial-scale=1,maximum-scale=1"><title>uiv - Bootstrap 3 Components Built with Vue 2.</title><link href="/uiv/static/css/app.d986f4c90a51f918ffa85bd09207a203.css" rel="stylesheet"></head><body><div id="app"></div><script type="text/javascript" src="/uiv/static/js/manifest.35ed5584b670a5f4d655.js"></script><script type="text/javascript" src="/uiv/static/js/vendor.832c47873a2d78cb7330.js"></script><script type="text/javascript" src="/uiv/static/js/app.a0c980232e356360a920.js"></script></body></html>
<!DOCTYPE html><html><head><meta charset="utf-8"><link rel="shortcut icon" type="image/png" href="/static/images/v-logo.png"><meta name="viewport" content="user-scalable=no,width=device-width,initial-scale=1,maximum-scale=1"><title>uiv - Bootstrap 3 Components Built with Vue 2.</title><link href="/uiv/static/css/app.d986f4c90a51f918ffa85bd09207a203.css" rel="stylesheet"></head><body><div id="app"></div><script type="text/javascript" src="/uiv/static/js/manifest.d1da9b9af2906fdcd3d9.js"></script><script type="text/javascript" src="/uiv/static/js/vendor.e7583c1c58111d0e3d4b.js"></script><script type="text/javascript" src="/uiv/static/js/app.e8bad99cc096e8e29635.js"></script></body></html>
5 changes: 0 additions & 5 deletions docs/static/js/app.a0c980232e356360a920.js

This file was deleted.

1 change: 0 additions & 1 deletion docs/static/js/app.a0c980232e356360a920.js.map

This file was deleted.

6 changes: 6 additions & 0 deletions docs/static/js/app.e8bad99cc096e8e29635.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/static/js/app.e8bad99cc096e8e29635.js.map

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion docs/static/js/vendor.832c47873a2d78cb7330.js.map

This file was deleted.

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/static/js/vendor.e7583c1c58111d0e3d4b.js.map

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
<html>
<head>
<meta charset="utf-8">
<link rel="shortcut icon" type="image/png" href="/static/images/logo.png"/>
<!-- This icon is on wxsms.github.io, not this project -->
<link rel="shortcut icon" type="image/png" href="/static/images/v-logo.png"/>
<meta name="viewport" content="user-scalable=no,width=device-width,initial-scale=1,maximum-scale=1">
<title>uiv - Bootstrap 3 Components Built with Vue 2.</title>
</head>
Expand Down
File renamed without changes
File renamed without changes
4 changes: 2 additions & 2 deletions src/docs/architecture/SideNav.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<aside :class="{'show':isAsideShow}">
<div class="brand">
<router-link class="logo" to="/" exact>
<img class="vue-logo" src="/static/images/logo.png">
<img class="bootstrap-logo" src="/static/images/boostrap_logo.png">
<img class="vue-logo" src="./../../assets/img/v-logo.png">
<img class="bootstrap-logo" src="./../../assets/img/b-logo.png">
</router-link>
<h2 @click="toggleAside(false)" class="text-center">
<router-link to="/" exact>UIV</router-link>
Expand Down
1 change: 1 addition & 0 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ let routes = [
]

let router = new VueRouter({
base: 'uiv',
mode: 'history',
routes,
scrollBehavior (to, from, savedPosition) {
Expand Down
Binary file removed static/images/boostrap_logo.png
Binary file not shown.
Binary file removed static/images/logo.png
Binary file not shown.

0 comments on commit 83ba6bc

Please sign in to comment.