[improvement] rename docs/src to docs/site (#3660)

This commit is contained in:
neverland 2019-06-27 11:37:44 +08:00 committed by GitHub
parent 75c79b7044
commit 425ba7ecf7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
17 changed files with 6 additions and 6 deletions

View File

@ -6,8 +6,8 @@ const { VueLoaderPlugin } = require('vue-loader');
module.exports = {
mode: 'development',
entry: {
'vant-docs': './docs/src/index.js',
'vant-mobile': './docs/src/mobile.js'
'vant-docs': './docs/site/index.js',
'vant-mobile': './docs/site/mobile.js'
},
output: {
path: path.join(__dirname, '../docs/dist'),
@ -77,13 +77,13 @@ module.exports = {
new ProgressBarPlugin(),
new HtmlWebpackPlugin({
chunks: ['vant-docs'],
template: 'docs/src/index.tpl',
template: 'docs/site/index.tpl',
filename: 'index.html',
inject: true
}),
new HtmlWebpackPlugin({
chunks: ['vant-mobile'],
template: 'docs/src/index.tpl',
template: 'docs/site/index.tpl',
filename: 'mobile.html',
inject: true
})

View File

@ -16,7 +16,7 @@
</div>
<h1 class="vant-title">
<img src="https://img.yzcdn.cn/vant/logo.png" >
<img src="https://img.yzcdn.cn/vant/logo.png">
<span>Vant</span>
</h1>
<h2 class="vant-desc">{{ description }}</h2>

View File

@ -1,5 +1,5 @@
import Vue from 'vue';
import '../docs/src/demo-common';
import '../docs/site/demo-common';
import Locale from '../src/locale';
import { mount, later } from './utils';