Compare commits
No commits in common. 'main' and 'd3a560c08130ca8aefe65e10d5c190cf1eac8ec6' have entirely different histories.
main
...
d3a560c081
@ -0,0 +1,6 @@ |
|||||||
|
// .env.local |
||||||
|
|
||||||
|
USER_="crapshr6_bb" |
||||||
|
HOST="crapshr6.beget.tech" |
||||||
|
DATABASE="crapshr6_bb" |
||||||
|
PASSWORD="Lo*&9pKQ" |
@ -1,4 +0,0 @@ |
|||||||
{ |
|
||||||
"typescript.tsdk": "node_modules/typescript/lib", |
|
||||||
"typescript.enablePromptUseWorkspaceTsdk": true |
|
||||||
} |
|
@ -1,8 +1,4 @@ |
|||||||
/** @type {import('next').NextConfig} */ |
/** @type {import('next').NextConfig} */ |
||||||
const nextConfig = { |
const nextConfig = {} |
||||||
experimental: { |
|
||||||
appDir: true, |
|
||||||
}, |
|
||||||
} |
|
||||||
|
|
||||||
module.exports = nextConfig |
module.exports = nextConfig |
||||||
|
File diff suppressed because it is too large
Load Diff
@ -1,35 +1,31 @@ |
|||||||
{ |
{ |
||||||
"name": "site", |
"name": "blogbaster_xyz", |
||||||
"version": "0.1.0", |
"version": "0.7.4", |
||||||
"private": true, |
"private": true, |
||||||
"scripts": { |
"scripts": { |
||||||
"dev": "concurrently \"next dev\" \"tailwindcss --input ./app/globals.css --output ./app/output.css --watch\"", |
"dev": "next dev", |
||||||
"build": "next build", |
"build": "next build", |
||||||
"start": "next start -p 3002", |
"start": "next start -p 3002", |
||||||
"lint": "next lint" |
"lint": "next lint" |
||||||
}, |
}, |
||||||
"dependencies": { |
"dependencies": { |
||||||
"@next/font": "13.1.6", |
"mysql2": "^3.6.5", |
||||||
"@types/node": "18.13.0", |
"next": "14.0.4", |
||||||
"@types/react": "18.0.27", |
"react": "^18", |
||||||
"@types/react-dom": "18.0.10", |
"react-dom": "^18", |
||||||
"daisyui": "^2.50.1", |
"react-h5-audio-player": "^3.9.1", |
||||||
"eslint": "8.33.0", |
|
||||||
"eslint-config-next": "13.1.6", |
|
||||||
"mysql2": "^3.1.2", |
|
||||||
"next": "13.1.6", |
|
||||||
"react": "18.2.0", |
|
||||||
"react-dom": "18.2.0", |
|
||||||
"react-h5-audio-player": "^3.8.6", |
|
||||||
"react-yandex-metrika": "^2.6.0", |
|
||||||
"semantic-ui-css": "^2.5.0", |
"semantic-ui-css": "^2.5.0", |
||||||
"semantic-ui-react": "^2.1.4", |
"semantic-ui-react": "^2.1.5" |
||||||
"typescript": "4.9.5" |
|
||||||
}, |
}, |
||||||
"devDependencies": { |
"devDependencies": { |
||||||
"autoprefixer": "^10.4.13", |
"@types/node": "^20", |
||||||
"concurrently": "^7.6.0", |
"@types/react": "^18", |
||||||
"postcss": "^8.4.21", |
"@types/react-dom": "^18", |
||||||
"tailwindcss": "^3.2.6" |
"autoprefixer": "^10.4.16", |
||||||
|
"eslint": "^8", |
||||||
|
"eslint-config-next": "14.0.4", |
||||||
|
"postcss": "^8.4.32", |
||||||
|
"tailwindcss": "^3.4.0", |
||||||
|
"typescript": "^5" |
||||||
} |
} |
||||||
} |
} |
||||||
|
@ -1,9 +1,6 @@ |
|||||||
// postcss.config.js
|
|
||||||
|
|
||||||
module.exports = { |
module.exports = { |
||||||
plugins: { |
plugins: { |
||||||
tailwindcss: {}, |
tailwindcss: {}, |
||||||
autoprefixer: {}, |
autoprefixer: {}, |
||||||
}, |
}, |
||||||
}; |
} |
||||||
|
|
||||||
|
Before Width: | Height: | Size: 676 KiB After Width: | Height: | Size: 676 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 24 KiB |
After Width: | Height: | Size: 25 KiB |
@ -1,41 +1,16 @@ |
|||||||
/** @type {import('tailwindcss').Config} */ |
/** @type {import('tailwindcss').Config} */ |
||||||
|
|
||||||
module.exports = { |
module.exports = { |
||||||
content: [ |
content: [ |
||||||
"./src/app/*.{js,ts,jsx,tsx}", |
"./app/**/*.{js,ts,jsx,tsx,mdx}", |
||||||
"src/**/*.{js,ts,jsx,tsx}", |
"./pages/**/*.{js,ts,jsx,tsx,mdx}", |
||||||
"./pages/**/*.{js,ts,jsx,tsx}", |
"./components/**/*.{js,ts,jsx,tsx,mdx}", |
||||||
"./components/**/*.{js,ts,jsx,tsx}", |
|
||||||
|
// Or if using `src` directory:
|
||||||
|
"./src/**/*.{js,ts,jsx,tsx,mdx}", |
||||||
], |
], |
||||||
theme: { |
theme: { |
||||||
extend: {}, |
extend: {}, |
||||||
}, |
}, |
||||||
plugins: [require("daisyui")], |
plugins: [], |
||||||
|
|
||||||
// daisyUI config (optional)
|
|
||||||
daisyui: { |
|
||||||
styled: true, |
|
||||||
themes: true, |
|
||||||
base: true, |
|
||||||
utils: true, |
|
||||||
logs: true, |
|
||||||
rtl: false, |
|
||||||
prefix: "", |
|
||||||
darkTheme: "white", |
|
||||||
}, |
|
||||||
themes: [ |
|
||||||
{ |
|
||||||
mytheme: { |
|
||||||
"primary": "#6419E6", |
|
||||||
"secondary": "#D926A9", |
|
||||||
"accent": "#1FB2A6", |
|
||||||
"neutral": "#191D24", |
|
||||||
"base-100": "#2A303C", |
|
||||||
"info": "#3ABFF8", |
|
||||||
"success": "#36D399", |
|
||||||
"warning": "#FBBD23", |
|
||||||
"error": "#F87272", |
|
||||||
}, |
|
||||||
}, |
|
||||||
], |
|
||||||
} |
} |
||||||
|
|
||||||
|
@ -0,0 +1,20 @@ |
|||||||
|
import type { Config } from 'tailwindcss' |
||||||
|
|
||||||
|
const config: Config = { |
||||||
|
content: [ |
||||||
|
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}', |
||||||
|
'./src/components/**/*.{js,ts,jsx,tsx,mdx}', |
||||||
|
'./src/app/**/*.{js,ts,jsx,tsx,mdx}', |
||||||
|
], |
||||||
|
theme: { |
||||||
|
extend: { |
||||||
|
backgroundImage: { |
||||||
|
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))', |
||||||
|
'gradient-conic': |
||||||
|
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))', |
||||||
|
}, |
||||||
|
}, |
||||||
|
}, |
||||||
|
plugins: [], |
||||||
|
} |
||||||
|
export default config |
Loading…
Reference in new issue