Skip to content

Commit

Permalink
configure prerender
Browse files Browse the repository at this point in the history
  • Loading branch information
gioboa committed Sep 20, 2023
1 parent e5f44fc commit 9aa96c6
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions apps/docs/nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
import { fileURLToPath } from 'url';
import { dirname, join, resolve } from 'path';

// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
extends: ['sf-docs-base'],
alias: {
"micromark/lib/preprocess.js": "micromark",
"micromark/lib/postprocess.js": "micromark",
'micromark/lib/preprocess.js': 'micromark',
'micromark/lib/postprocess.js': 'micromark',
},
runtimeConfig: {
public: {
storefrontUi: true,
DOCS_EXAMPLES_QWIK_PATH: process.env.DOCS_EXAMPLES_QWIK_PATH,
},
},

vite: {
server: {
fs: {
strict: false,
},
},
},

devtools: {
enabled: true,
enabled: false,
},
nitro: {
prerender: {
failOnError: false,
},
},
});

0 comments on commit 9aa96c6

Please sign in to comment.