-
-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #125 from gregrickaby/develop
simplify repo. add app router support.
- Loading branch information
Showing
126 changed files
with
3,274 additions
and
9,309 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# WordPress GraphQL API URL. | ||
NEXT_PUBLIC_WORDPRESS_URL="https://wordpress.nextjswp.com/graphql" | ||
|
||
# Allow self-signed SSL certificates for working with local development environments. | ||
NODE_TLS_REJECT_UNAUTHORIZED=0 |
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,11 +1,8 @@ | ||
!/.*.js | ||
/.*.js | ||
*.min.js | ||
.*cache/ | ||
.next/ | ||
.turbo/ | ||
.vercel/ | ||
build/ | ||
dist/ | ||
node_modules/ | ||
public/ | ||
vendor/ |
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,9 +1,8 @@ | ||
module.exports = { | ||
root: true, | ||
extends: ['custom'], | ||
settings: { | ||
next: { | ||
rootDir: ['apps/*/'] | ||
} | ||
extends: ['next/core-web-vitals', 'prettier'], | ||
rules: { | ||
'@next/next/no-img-element': 'off', | ||
'func-style': ['error', 'declaration'], | ||
'no-console': ['error', {allow: ['warn', 'error']}] | ||
} | ||
} |
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 was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,11 +1,8 @@ | ||
!/.*.js | ||
/.*.js | ||
*.min.js | ||
.*cache/ | ||
.next/ | ||
.turbo/ | ||
.vercel/ | ||
build/ | ||
dist/ | ||
node_modules/ | ||
public/ | ||
vendor/ |
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,3 +1,8 @@ | ||
module.exports = { | ||
...require("./packages/prettier-config-custom/"), | ||
}; | ||
tabWidth: 2, | ||
useTabs: false, | ||
singleQuote: true, | ||
bracketSpacing: false, | ||
semi: false, | ||
trailingComma: 'none' | ||
} |
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,11 +1,8 @@ | ||
!/.*.js | ||
/.*.js | ||
*.min.js | ||
.*cache/ | ||
.next/ | ||
.turbo/ | ||
.vercel/ | ||
build/ | ||
dist/ | ||
node_modules/ | ||
public/ | ||
vendor/ |
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,22 @@ | ||
module.exports = { | ||
extends: ['stylelint-config-standard'], | ||
rules: { | ||
'at-rule-no-unknown': [ | ||
true, | ||
{ | ||
ignoreAtRules: [ | ||
'tailwind', | ||
'apply', | ||
'layer', | ||
'variants', | ||
'responsive', | ||
'screen' | ||
] | ||
} | ||
], | ||
'declaration-block-trailing-semicolon': null, | ||
'no-descending-specificity': null, | ||
'selector-class-pattern': null, | ||
'max-line-length': null | ||
} | ||
} |
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
Oops, something went wrong.
c515a41
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
nextjs-wordpress – ./
nextjswp.com
nextjs-wordpress-gregrickaby.vercel.app
www.nextjswp.com
nextjs-wordpress-git-main-gregrickaby.vercel.app