upstream #1

Merged
jblu merged 1007 commits from upstream into main 2024-11-04 22:35:57 -06:00
4 changed files with 1251 additions and 1549 deletions
Showing only changes of commit debc775a11 - Show all commits

2846
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -39,6 +39,7 @@
"devDependencies": { "devDependencies": {
"@next/bundle-analyzer": "10.1.3", "@next/bundle-analyzer": "10.1.3",
"@svgr/webpack": "^5.5.0", "@svgr/webpack": "^5.5.0",
"@tailwindcss/jit": "^0.1.18",
"eslint": "^7.17.0", "eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0", "eslint-config-prettier": "^7.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1", "eslint-plugin-jsx-a11y": "^6.4.1",
@ -50,7 +51,7 @@
"husky": "^4.3.7", "husky": "^4.3.7",
"lint-staged": "^10.5.3", "lint-staged": "^10.5.3",
"next-compose-plugins": "^2.2.1", "next-compose-plugins": "^2.2.1",
"next-remote-watch": "^0.3.0", "next-remote-watch": "^1.0.0",
"prettier": "2.2.1", "prettier": "2.2.1",
"rehype": "11.0.0", "rehype": "11.0.0",
"remark-frontmatter": "3.0.0", "remark-frontmatter": "3.0.0",

View File

@ -1,6 +1,6 @@
module.exports = { module.exports = {
plugins: { plugins: {
tailwindcss: {}, '@tailwindcss/jit': {},
autoprefixer: {}, autoprefixer: {},
}, },
} }

View File

@ -4,9 +4,6 @@ const colors = require('tailwindcss/colors')
module.exports = { module.exports = {
purge: { purge: {
content: ['./pages/**/*.js', './components/**/*.js', './layouts/**/*.js', './lib/**/*.js'], content: ['./pages/**/*.js', './components/**/*.js', './layouts/**/*.js', './lib/**/*.js'],
options: {
safelist: ['type'], // [type='checkbox']
},
}, },
darkMode: 'class', darkMode: 'class',
theme: { theme: {