Skip to content

Commit

Permalink
Merge branch 'main' into test/implement-readability-tests-v2
Browse files Browse the repository at this point in the history
  • Loading branch information
ntotten committed Jan 17, 2024
2 parents 56e5bd4 + 48ab3ee commit 1457df0
Show file tree
Hide file tree
Showing 23 changed files with 1,797 additions and 5,707 deletions.
6 changes: 0 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,6 @@ scripts/update-policies.mjs.map
yarn.lock
.vercel




# Temporary while migrating
sidebar.jsonc

# Generated Content
src/shiki/
public/robots.txt
Expand Down
12 changes: 11 additions & 1 deletion .vercelignore
Original file line number Diff line number Diff line change
@@ -1 +1,11 @@
public/media/*
public/media/\*
.github
.vscode
README.md
.eslintrc
.prettierignore
.nvmrc
checkly.config.ts
CONTRIBUTING.md
prettier.config.js
**checks**
15 changes: 0 additions & 15 deletions docs/articles/node-modules.md

This file was deleted.

13 changes: 13 additions & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@ import withPolicies from "./src/build/policies.mjs";
const nextConfig = {
basePath: "/docs",
pageExtensions: ["js", "jsx", "md", "ts", "tsx"],
swcMinify: true,
reactStrictMode: true,
images: {
deviceSizes: [576, 640, 760, 828, 992, 1180, 1440],
imageSizes: [96, 128, 256, 384],
formats: ["image/avif", "image/webp"],
remotePatterns: [
{
protocol: "https",
hostname: "cdn.zuplo.com",
},
],
},
};

export default withPolicies(withNavigation(nextConfig));
Loading

0 comments on commit 1457df0

Please sign in to comment.