mirror of
https://github.com/MetaCubeX/metacubexd.git
synced 2024-11-10 05:15:35 +08:00
fix: support child path to fix router issue
This commit is contained in:
parent
642fcd8190
commit
1091234703
7
.github/workflows/release.yml
vendored
7
.github/workflows/release.yml
vendored
@ -38,8 +38,8 @@ jobs:
|
||||
- name: install dependencies
|
||||
run: pnpm install
|
||||
|
||||
- name: build for gh-pages
|
||||
run: pnpm build --base /metacubexd
|
||||
- name: build
|
||||
run: pnpm build
|
||||
|
||||
- name: publish gh-pages
|
||||
uses: peaceiris/actions-gh-pages@v3
|
||||
@ -47,9 +47,6 @@ jobs:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
publish_dir: ./dist
|
||||
|
||||
- name: build for github release
|
||||
run: pnpm build
|
||||
|
||||
- name: zip
|
||||
run: |
|
||||
zip -r ../dist.zip .
|
||||
|
@ -3,6 +3,7 @@ import { defineConfig, splitVendorChunkPlugin } from 'vite'
|
||||
import solidPlugin from 'vite-plugin-solid'
|
||||
|
||||
export default defineConfig({
|
||||
base: './',
|
||||
build: { chunkSizeWarningLimit: 1000 },
|
||||
resolve: { alias: { '~': '/src' } },
|
||||
plugins: [devtools(), solidPlugin(), splitVendorChunkPlugin()],
|
||||
|
Loading…
Reference in New Issue
Block a user