Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions apps/xi.land/components/navigation/MenuItem.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/* eslint-disable @typescript-eslint/ban-ts-comment */
/* eslint-disable no-unused-vars */
import React from 'react';
import { motion } from 'motion/react';
import Link from 'next/link';
Expand Down Expand Up @@ -38,7 +36,6 @@ export const MenuItem = ({
)}
>
{href ? (
// @ts-expect-error
<Link
target={target}
href={href}
Expand Down
8 changes: 3 additions & 5 deletions apps/xi.land/next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
/* eslint-disable no-undef */
import path from 'path';
import createMDX from '@next/mdx';
import remarkGfm from 'remark-gfm';
import bundleAnalyzer from '@next/bundle-analyzer';

const withBundleAnalyzer = bundleAnalyzer({
enabled: process.env.ANALYZE === 'true',
});

const withMDX = createMDX({
// Add markdown plugins here, as desired
extension: /\.mdx?$/,
options: {
remarkPlugins: [remarkGfm],
remarkPlugins: ['remark-gfm'],
},
pageExtensions: ['ts', 'tsx', 'md', 'mdx', 'js', 'jsx'],
});
Expand All @@ -20,8 +19,7 @@ const plugins = [withBundleAnalyzer, withMDX];

const nextConfig = {
experimental: {
esmExternals: true,
mdxRs: true,
turbopackFileSystemCacheForDev: true,
},
pageExtensions: ['js', 'jsx', 'mdx', 'ts', 'tsx'],
outputFileTracingRoot: path.join(process.cwd(), '../../'),
Expand Down
26 changes: 15 additions & 11 deletions apps/xi.land/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"@hookform/resolvers": "3.3.4",
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/bundle-analyzer": "^15.0.3",
"@next/mdx": "^15.5.4",
"@next/bundle-analyzer": "16.1.4",
"@next/mdx": "16.1.4",
"@types/mdx": "^2.0.13",
"@xipkg/aspect-ratio": "^2.0.11",
"@xipkg/button": "^4.0.0",
Expand All @@ -30,14 +30,14 @@
"@xipkg/utils": "^1.8.0",
"gsap": "^3.13.0",
"motion": "^12.23.6",
"next": "^15.1.6",
"next": "16.1.6",
"pkg.accordion": "*",
"pkg.carousel": "*",
"pkg.error-page": "*",
"pkg.landing.footer": "*",
"pkg.utils": "*",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-hook-form": "^7.45.2",
"react-snowfall": "^2.4.0",
"remark-gfm": "^4.0.1",
Expand All @@ -49,8 +49,8 @@
"@eslint/js": "^9.17.0",
"@tailwindcss/postcss": "^4.1.11",
"@types/node": "^20.3.1",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"@types/react": "19.2.10",
"@types/react-dom": "19.2.3",
"@xipkg/eslint": "4.6.0",
"@xipkg/typescript": "latest",
"autoprefixer": "^10.4.20",
Expand All @@ -65,9 +65,9 @@
"@unrs/resolver-binding-linux-x64-gnu": "1.11.1"
},
"peerDependencies": {
"next": "^15.1.6",
"react": "^19.0.0",
"react-dom": "^19.0.0"
"next": "^16.1.6",
"react": "^19.2.4",
"react-dom": "^19.2.3"
},
"main": ".eslintrc.js",
"author": "xi.effect",
Expand All @@ -76,5 +76,9 @@
">0.2%",
"not dead",
"not op_mini all"
]
],
"overrides": {
"@types/react": "19.2.10",
"@types/react-dom": "19.2.3"
}
}
16 changes: 6 additions & 10 deletions apps/xi.support/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@ const plugins = [];
plugins.push(withMDX);

const nextConfig = {
experimental: {
mdxRs: true,
esmExternals: true,
},
outputFileTracingRoot: path.join(__dirname, '../../'),
transpilePackages: [
'@xipkg/typescript',
Expand All @@ -31,12 +27,12 @@ const nextConfig = {
reactStrictMode: true,
images: {
unoptimized: true,
domains: [
'cdn.discordapp.com',
'localhost:3000',
'localhost:5000',
'sovlium.ru:5000',
'sovlium.ru',
remotePatterns: [
{ protocol: 'https', hostname: 'cdn.discordapp.com' },
{ protocol: 'http', hostname: 'localhost', port: '3000' },
{ protocol: 'http', hostname: 'localhost', port: '5000' },
{ protocol: 'https', hostname: 'sovlium.ru', port: '5000' },
{ protocol: 'https', hostname: 'sovlium.ru' },
],
},
output: process.env.NODE_ENV === 'development' ? 'standalone' : 'export',
Expand Down
18 changes: 11 additions & 7 deletions apps/xi.support/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@
"@hookform/resolvers": "^3.2.0",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "^15.1.6",
"@next/mdx": "16.1.4",
"@types/mdx": "^2.0.13",
"@xipkg/tailwind": "0.8.1",
"@xipkg/icons": "^2.7.2",
"@xipkg/input": "^1.2.0",
"@xipkg/link": "^2.0.12",
"@xipkg/button": "^4.0.0",
"pkg.landing.footer": "*",
"next": "^15.1.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"next": "16.1.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-hook-form": "^7.45.2",
"uuid": "^9.0.0",
"yup": "^1.2.0"
Expand All @@ -32,8 +32,8 @@
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@types/node": "^20.3.1",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"@types/react": "19.2.10",
"@types/react-dom": "19.2.3",
"@xipkg/eslint": "4.6.0",
"@xipkg/typescript": "latest",
"autoprefixer": "^10.4.20",
Expand All @@ -49,5 +49,9 @@
},
"main": ".eslintrc.js",
"author": "Sovlium",
"license": "ISC"
"license": "ISC",
"overrides": {
"@types/react": "19.2.10",
"@types/react-dom": "19.2.3"
}
}
16 changes: 6 additions & 10 deletions apps/xi.vacancy/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@ const plugins = [];
plugins.push(withMDX);

const nextConfig = {
experimental: {
mdxRs: true,
esmExternals: true,
},
outputFileTracingRoot: path.join(__dirname, '../../'),
transpilePackages: [
'@xipkg/typescript',
Expand All @@ -39,12 +35,12 @@ const nextConfig = {
reactStrictMode: true,
images: {
unoptimized: true,
domains: [
'cdn.discordapp.com',
'localhost:3000',
'localhost:5000',
'sovlium.ru:5000',
'sovlium.ru',
remotePatterns: [
{ protocol: 'https', hostname: 'cdn.discordapp.com' },
{ protocol: 'http', hostname: 'localhost', port: '3000' },
{ protocol: 'http', hostname: 'localhost', port: '5000' },
{ protocol: 'https', hostname: 'sovlium.ru', port: '5000' },
{ protocol: 'https', hostname: 'sovlium.ru' },
],
},
output: 'export',
Expand Down
20 changes: 12 additions & 8 deletions apps/xi.vacancy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"@hookform/resolvers": "^3.2.0",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "^15.1.6",
"@next/mdx": "16.1.4",
"@types/mdx": "^2.0.13",
"@xipkg/button": "^3.1.8",
"@xipkg/fileuploader": "^2.0.12",
Expand All @@ -25,10 +25,10 @@
"@xipkg/tabs": "^2.1.0",
"@xipkg/badge": "^2.0.12",
"@xipkg/tailwind": "0.8.1",
"eslint-config-next": "^15.1.6",
"next": "^15.1.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"eslint-config-next": "16.1.4",
"next": "16.1.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-hook-form": "^7.45.2",
"sonner": "^1.7.4",
"uuid": "11.0.5",
Expand All @@ -41,8 +41,8 @@
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@types/node": "^20.3.1",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"@types/react": "19.2.10",
"@types/react-dom": "19.2.3",
"@xipkg/eslint": "4.6.0",
"@xipkg/typescript": "latest",
"autoprefixer": "^10.4.20",
Expand All @@ -58,5 +58,9 @@
},
"main": ".eslintrc.js",
"author": "Sovlium",
"license": "ISC"
"license": "ISC",
"overrides": {
"@types/react": "19.2.10",
"@types/react-dom": "19.2.3"
}
}
Loading
Loading