-
Notifications
You must be signed in to change notification settings - Fork 138
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Profile page needs to support theme, currently commented out.
me/tokens action is redundant when using Jetstream Send available locales and the current theme with every Inertia request. Going back to using the Jetstream built in profile components. Delete me/tokens js, because we can just use the Jetstream API key management. Slow and arduous conversion of Jetstream components from tailwind styling into bootstrap styling (INCOMPLETE) Experimental vue/codemirror6 editor for GraphQL Changed inertia layout to support dynamic title Changed inertia layout to include current page component (assume i was trying to modularise the inertia support) Ignore xdebug and phpinfo files for debugging Add codegen for client side TypeScript typing of GQL API Minor update dependencies, include TS support for Vue3
- Loading branch information
Showing
27 changed files
with
757 additions
and
413 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
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import type { CodegenConfig } from '@graphql-codegen/cli'; | ||
|
||
|
||
const config: CodegenConfig = { | ||
schema: './graphql/*.graphql', | ||
documents: ['resources/js/**/*.vue'], | ||
ignoreNoDocuments: true, // for better experience with the watcher | ||
generates: { | ||
'./resources/js/gql/': { | ||
preset: 'client', | ||
config: { | ||
useTypeImports: true, | ||
}, | ||
plugins: [], | ||
}, | ||
}, | ||
}; | ||
|
||
export default config; |
Oops, something went wrong.