Skip to content

Commit

Permalink
feat(deps): adjustment for next.js v13.3.x (#170)
Browse files Browse the repository at this point in the history
  • Loading branch information
pravastacaraka committed Apr 27, 2023
1 parent df75c88 commit 8f3384a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
8 changes: 5 additions & 3 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
const { withPlaiceholder } = require("@plaiceholder/next");

module.exports = withPlaiceholder({
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
domains: ["dl.airtable.com", "v5.airtableusercontent.com"],
},
experimental: {
appDir: true,
fontLoaders: [{ loader: "@next/font/google", options: { subsets: ["latin"] } }],
},
});
};

module.exports = withPlaiceholder(nextConfig);
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"@vercel/analytics": "0.1.11",
"airtable": "0.11.6",
"framer-motion": "10.12.4",
"next": "13.2.4",
"next": "13.3.1",
"plaiceholder": "2.5.0",
"react": "18.2.0",
"react-dom": "18.2.0",
Expand All @@ -33,7 +33,7 @@
"@commitlint/cli": "17.6.1",
"@commitlint/config-conventional": "17.6.1",
"eslint": "8.36.0",
"eslint-config-next": "13.2.4",
"eslint-config-next": "13.3.1",
"eslint-config-prettier": "8.8.0",
"husky": "8.0.3",
"lint-staged": "13.2.0",
Expand Down
2 changes: 1 addition & 1 deletion styles/theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { extendTheme } from "@chakra-ui/react";
import { mode } from "@chakra-ui/theme-tools";
import { Inter } from "next/font/google";

const inter = Inter();
const inter = Inter({ subsets: ["latin"] });

const breakpoints = {
xs: "375px",
Expand Down

1 comment on commit 8f3384a

@vercel
Copy link

@vercel vercel bot commented on 8f3384a Apr 27, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.