-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a7e27fe
commit 1f48868
Showing
9 changed files
with
105 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
# settings for Nuxt & pnpm | ||
# https://cuyl.github.io/pnpm.github.io/npmrc/ | ||
shamefully-hoist=true | ||
strict-peer-dependencies=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,21 @@ | ||
/** | ||
* Available variants for UI libraries. | ||
* | ||
* `nuxt-ui` - full https://ui.nuxt.com/ via `@nuxt/ui` connector module **[RECOMMENDED]** | ||
* | ||
* `tailwind` - only https://tailwindcss.com/ via `@nuxtjs/tailwindcss` connector module | ||
* | ||
* `off` - no UI library **[DEFAULT]** | ||
*/ | ||
export type UIOptions = 'nuxt-ui' | 'tailwind' | 'off' | ||
export type DBOptions = 'neon' | 'supabase' | 'off' | ||
|
||
/** | ||
* Available variants for Database connector. | ||
* | ||
* `neon` - https://neon.tech/ via `nuxt-neon` connector module **[RECOMMENDED]** | ||
* | ||
* `supabase` - https://supabase.com/ via `@nuxtjs/supabase` connector module | ||
* | ||
* `off` - no database module **[DEFAULT]** | ||
*/ | ||
export type DBOptions = 'neon' | 'supabase' | 'off' |