Merge branch 'dev' into next

This commit is contained in:
chenjiahan 2020-08-25 11:20:05 +08:00
commit 6da8e08662
2 changed files with 20 additions and 1 deletions

19
.github/workflows/preview.yml vendored Normal file
View File

@ -0,0 +1,19 @@
name: 🔂 Surge PR Preview
on: [push, pull_request]
jobs:
preview:
runs-on: ubuntu-latest
env:
PUBLIC_PATH: '/'
steps:
- uses: actions/checkout@v2
- uses: afc163/surge-preview@v1
with:
surge_token: ${{ secrets.SURGE_TOKEN }}
github_token: ${{ secrets.GITHUB_TOKEN }}
build: |
npm install
./node_modules/.bin/vant-cli build-site
dist: site

View File

@ -4,7 +4,7 @@ module.exports = {
srcDir: 'src', srcDir: 'src',
skipInstall: ['lazyload'], skipInstall: ['lazyload'],
site: { site: {
publicPath: 'https://b.yzcdn.cn/vant/', publicPath: process.env.PUBLIC_PATH || 'https://b.yzcdn.cn/vant/',
}, },
vetur: { vetur: {
tagPrefix: 'van-', tagPrefix: 'van-',