mirror of
https://github.com/skidoodle/albert.lol.git
synced 2025-02-15 06:09:15 +01:00
.minor changes
This commit is contained in:
parent
3a2ff6d9bc
commit
7a5427ffc2
3 changed files with 11 additions and 8 deletions
|
@ -47,5 +47,4 @@ module.exports = {
|
|||
},
|
||||
reactStrictMode: true,
|
||||
swcMinify: true,
|
||||
poweredByHeader: false,
|
||||
};
|
||||
|
|
13
package.json
13
package.json
|
@ -1,12 +1,19 @@
|
|||
{
|
||||
"name": "portfolio",
|
||||
"version": "0.1.0",
|
||||
"name": "albert.lol",
|
||||
"version": "4.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "next dev",
|
||||
"build": "next build",
|
||||
"start": "next start",
|
||||
"lint": "next lint"
|
||||
"lint": "next lint",
|
||||
"format": "prettier --write \"**/*.{js,ts,tsx,md}\""
|
||||
},
|
||||
"prettier": {
|
||||
"arrowParens": "always",
|
||||
"semi": true,
|
||||
"trailingComma": "all",
|
||||
"singleQuote": true
|
||||
},
|
||||
"dependencies": {
|
||||
"@types/node": "18.15.11",
|
||||
|
|
|
@ -2,10 +2,7 @@ const { fontFamily } = require('tailwindcss/defaultTheme');
|
|||
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
content: [
|
||||
'./src/pages/**/*.{js,ts,jsx,tsx}',
|
||||
'./src/components/**/*.{js,ts,jsx,tsx}',
|
||||
],
|
||||
content: ['./src/**/*.{js,ts,jsx,tsx}'],
|
||||
theme: {
|
||||
extend: {
|
||||
fontFamily: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue