-
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.
[plasmic] Sync project Website starter
This is an automated commit generated by Johan Goldstein-Nielsen using Plasmic (https://plasmic.app/). Project name: Website starter Project URL: https://studio.plasmic.app/projects/bG3RzPcBvznLBUEueEQaFh
- Loading branch information
1 parent
06a9a39
commit e1539fe
Showing
16 changed files
with
4,536 additions
and
0 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,3 @@ | ||
{ | ||
"extends": "next/core-web-vitals" | ||
} |
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,36 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
.yarn/install-state.gz | ||
|
||
# testing | ||
/coverage | ||
|
||
# next.js | ||
/.next/ | ||
/out/ | ||
|
||
# production | ||
/build | ||
|
||
# misc | ||
.DS_Store | ||
*.pem | ||
|
||
# debug | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# local env files | ||
.env*.local | ||
|
||
# vercel | ||
.vercel | ||
|
||
# typescript | ||
*.tsbuildinfo | ||
next-env.d.ts |
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,25 @@ | ||
This is a Next.js project bootstrapped with [`create-plasmic-app`](https://www.npmjs.com/package/create-plasmic-app). | ||
|
||
## Getting Started | ||
|
||
First, run the development server: | ||
|
||
```bash | ||
npm run dev | ||
``` | ||
|
||
Open your browser to see the result. | ||
|
||
You can start editing your project in Plasmic Studio. The page auto-updates as you edit the project. | ||
|
||
## Learn More | ||
|
||
With Plasmic, you can enable non-developers on your team to publish pages and content into your website or app. | ||
|
||
To learn more about Plasmic, take a look at the following resources: | ||
|
||
- [Plasmic Website](https://www.plasmic.app/) | ||
- [Plasmic Documentation](https://docs.plasmic.app/learn/) | ||
- [Plasmic Slack Community](https://www.plasmic.app/slack) | ||
|
||
You can check out [the Plasmic GitHub repository](https://github.com/plasmicapp/plasmic) - your feedback and contributions are welcome! |
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,10 @@ | ||
|
||
/** @type {import('next').NextConfig} */ | ||
const nextConfig = { | ||
// Turn off React StrictMode for now, as react-aria (used by Plasmic) | ||
// has some troubles with it. See | ||
// https://github.com/adobe/react-spectrum/labels/strict%20mode | ||
reactStrictMode: false, | ||
}; | ||
|
||
module.exports = nextConfig; |
Oops, something went wrong.