Add basic Guider project and remove Nuxt content

This commit is contained in:
mrjvs
2024-03-30 20:22:43 +01:00
parent e10040dc40
commit c06bedc93c
18 changed files with 1753 additions and 7291 deletions

12
next.config.mjs Normal file
View File

@@ -0,0 +1,12 @@
import { guider } from '@neato/guider';
const withGuider = guider({
// The location of your theme file, created in the next step
themeConfig: './theme.config.tsx',
});
export default withGuider({
// These are the normal Next.JS settings.
// Check out Next.JS docs: https://nextjs.org/docs/app/api-reference/next-config-js
output: 'export',
});