We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 326cdae commit 66e0652Copy full SHA for 66e0652
.github/workflows/cd.yml
@@ -39,7 +39,7 @@ jobs:
39
- name: Build
40
run: pnpm run build
41
env:
42
- NITRO_PRESET: github_pages
+ BASE_URL: /IME/
43
44
- name: Upload artifact
45
uses: actions/upload-pages-artifact@v3
app.config.ts
@@ -6,6 +6,10 @@ import Icons from "unplugin-icons/vite";
6
7
export default defineConfig({
8
ssr: false,
9
+ server: {
10
+ baseURL: process.env.BASE_URL,
11
+ preset: "github_pages",
12
+ },
13
vite: {
14
plugins: [
15
Icons({ compiler: "solid" }),
0 commit comments