Compare commits
No commits in common. 'd3a560c08130ca8aefe65e10d5c190cf1eac8ec6' and 'main' have entirely different histories.
d3a560c081
...
main
@ -1,6 +0,0 @@ |
|||||||
// .env.local |
|
||||||
|
|
||||||
USER_="crapshr6_bb" |
|
||||||
HOST="crapshr6.beget.tech" |
|
||||||
DATABASE="crapshr6_bb" |
|
||||||
PASSWORD="Lo*&9pKQ" |
|
@ -0,0 +1,4 @@ |
|||||||
|
{ |
||||||
|
"typescript.tsdk": "node_modules/typescript/lib", |
||||||
|
"typescript.enablePromptUseWorkspaceTsdk": true |
||||||
|
} |
@ -1,4 +1,8 @@ |
|||||||
/** @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,31 +1,35 @@ |
|||||||
{ |
{ |
||||||
"name": "blogbaster_xyz", |
"name": "site", |
||||||
"version": "0.7.4", |
"version": "0.1.0", |
||||||
"private": true, |
"private": true, |
||||||
"scripts": { |
"scripts": { |
||||||
"dev": "next dev", |
"dev": "concurrently \"next dev\" \"tailwindcss --input ./app/globals.css --output ./app/output.css --watch\"", |
||||||
"build": "next build", |
"build": "next build", |
||||||
"start": "next start -p 3002", |
"start": "next start -p 3002", |
||||||
"lint": "next lint" |
"lint": "next lint" |
||||||
}, |
}, |
||||||
"dependencies": { |
"dependencies": { |
||||||
"mysql2": "^3.6.5", |
"@next/font": "13.1.6", |
||||||
"next": "14.0.4", |
"@types/node": "18.13.0", |
||||||
"react": "^18", |
"@types/react": "18.0.27", |
||||||
"react-dom": "^18", |
"@types/react-dom": "18.0.10", |
||||||
"react-h5-audio-player": "^3.9.1", |
"daisyui": "^2.50.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.5" |
"semantic-ui-react": "^2.1.4", |
||||||
|
"typescript": "4.9.5" |
||||||
}, |
}, |
||||||
"devDependencies": { |
"devDependencies": { |
||||||
"@types/node": "^20", |
"autoprefixer": "^10.4.13", |
||||||
"@types/react": "^18", |
"concurrently": "^7.6.0", |
||||||
"@types/react-dom": "^18", |
"postcss": "^8.4.21", |
||||||
"autoprefixer": "^10.4.16", |
"tailwindcss": "^3.2.6" |
||||||
"eslint": "^8", |
|
||||||
"eslint-config-next": "14.0.4", |
|
||||||
"postcss": "^8.4.32", |
|
||||||
"tailwindcss": "^3.4.0", |
|
||||||
"typescript": "^5" |
|
||||||
} |
} |
||||||
} |
} |
||||||
|
@ -1,6 +1,9 @@ |
|||||||
|
// 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 |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 25 KiB |
@ -1,16 +1,41 @@ |
|||||||
/** @type {import('tailwindcss').Config} */ |
/** @type {import('tailwindcss').Config} */ |
||||||
|
|
||||||
module.exports = { |
module.exports = { |
||||||
content: [ |
content: [ |
||||||
"./app/**/*.{js,ts,jsx,tsx,mdx}", |
"./src/app/*.{js,ts,jsx,tsx}", |
||||||
"./pages/**/*.{js,ts,jsx,tsx,mdx}", |
"src/**/*.{js,ts,jsx,tsx}", |
||||||
"./components/**/*.{js,ts,jsx,tsx,mdx}", |
"./pages/**/*.{js,ts,jsx,tsx}", |
||||||
|
"./components/**/*.{js,ts,jsx,tsx}", |
||||||
// Or if using `src` directory:
|
|
||||||
"./src/**/*.{js,ts,jsx,tsx,mdx}", |
|
||||||
], |
], |
||||||
theme: { |
theme: { |
||||||
extend: {}, |
extend: {}, |
||||||
}, |
}, |
||||||
plugins: [], |
plugins: [require("daisyui")], |
||||||
} |
|
||||||
|
|
||||||
|
// 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", |
||||||
|
}, |
||||||
|
}, |
||||||
|
], |
||||||
|
} |
||||||
|
@ -1,20 +0,0 @@ |
|||||||
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