We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b509acd commit 4b210e5Copy full SHA for 4b210e5
.github/workflows/deploy.yml
@@ -18,7 +18,7 @@ jobs:
18
node-version: "18"
19
20
- run: npx nypm install
21
- - run: npm run build
+ - run: npx nuxi generate
22
env:
23
NITRO_PRESET: github_pages
24
nuxt.config.ts
@@ -1,9 +1,9 @@
1
// https://nuxt.com/docs/api/configuration/nuxt-config
2
export default defineNuxtConfig({
3
app: {
4
- baseURL: "/personal-site/",
+ // baseURL: "/personal-site/",
5
},
6
- ssr: false,
+ //ssr: false,
7
devtools: { enabled: true },
8
modules: ["@nuxt/eslint", "@nuxt/test-utils/module"],
9
typescript: {
@@ -18,6 +18,6 @@ export default defineNuxtConfig({
routeRules: {
- "/": { ssr: false },
+ "/": { prerender: true },
});
0 commit comments