Browse Source

Merge branch 'main' of https://github.com/tabler/tabler into dev

codecalm 1 year ago
parent
commit
3f2e735098
2 changed files with 0 additions and 29 deletions
  1. 0 10
      site/.eslintrc
  2. 0 19
      site/next.config.mjs

+ 0 - 10
site/.eslintrc

@@ -1,10 +0,0 @@
-{
-  "extends": ["babel"],
-  "rules": {
-    "react/no-unescaped-entities": "off",
-    "react/display-name": "off",
-    "@next/next/no-img-element": "off",
-    "react/jsx-no-target-blank": "off",
-    "jsx-a11y/alt-text": "off"
-  }
-}

+ 0 - 19
site/next.config.mjs

@@ -1,19 +0,0 @@
-import { withContentlayer } from "next-contentlayer"
-import fs from 'fs-extra'
-
-import "./env.mjs"
-
-/** @type {import('next').NextConfig} */
-const nextConfig = {
-  reactStrictMode: false,
-  images: {
-    domains: ["avatars.githubusercontent.com"],
-  },
-  experimental: {
-  },
-  async redirects() {
-    return JSON.parse(fs.readFileSync('./redirects.json'))
-  },
-}
-
-export default withContentlayer(nextConfig)