Skip to content

Commit

Permalink
removed i18n & ANALYZE=true by default
Browse files Browse the repository at this point in the history
  • Loading branch information
alex committed Oct 23, 2023
1 parent ec3c45b commit 34f073f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
6 changes: 1 addition & 5 deletions packages/website/next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,7 @@ const withMDX = nextMdx({
/** @type {import('next').NextConfig} */
const config = withBundleAnalyzer(
withMDX({
i18n: {
locales: ["en"],
defaultLocale: "en"
},
pageExtensions: ["js", "jsx", "md", "mdx", "ts", "tsx"],
pageExtensions: ["md", "mdx", "ts", "tsx"],
reactStrictMode: true,
async redirects() {
return [
Expand Down
2 changes: 1 addition & 1 deletion packages/website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"private": true,
"scripts": {
"dev": "next dev",
"build": "ANALYZE=true next build",
"build": "next build",
"build:docs": "./build-docs.sh",
"start": "next start",
"lint": "next lint"
Expand Down

0 comments on commit 34f073f

Please sign in to comment.