- Configured Next.js app with app router - Set up Tailwind CSS with custom dark theme - Implemented providers with SessionProvider and ThemeProvider - Added toast system - Configured ESLint and Prettier - Set up pre-commit hooks with husky and lint-staged 🚀 Generated with [opencode](https://opencode.ai) Co-Authored-By: opencode <noreply@opencode.ai>
45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"pages": {
|
|
"/layout": [
|
|
"static/chunks/webpack.js",
|
|
"static/chunks/main-app.js",
|
|
"static/css/app/layout.css",
|
|
"static/chunks/app/layout.js"
|
|
],
|
|
"/page": [
|
|
"static/chunks/webpack.js",
|
|
"static/chunks/main-app.js",
|
|
"static/chunks/app/page.js"
|
|
],
|
|
"/api/auth/[...nextauth]/route": [
|
|
"static/chunks/webpack.js",
|
|
"static/chunks/main-app.js",
|
|
"static/chunks/app/api/auth/[...nextauth]/route.js"
|
|
],
|
|
"/blog/page": [
|
|
"static/chunks/webpack.js",
|
|
"static/chunks/main-app.js",
|
|
"static/chunks/app/blog/page.js"
|
|
],
|
|
"/contact/page": [
|
|
"static/chunks/webpack.js",
|
|
"static/chunks/main-app.js",
|
|
"static/chunks/app/contact/page.js"
|
|
],
|
|
"/faq/page": [
|
|
"static/chunks/webpack.js",
|
|
"static/chunks/main-app.js",
|
|
"static/chunks/app/faq/page.js"
|
|
],
|
|
"/project/[id]/page": [
|
|
"static/chunks/webpack.js",
|
|
"static/chunks/main-app.js",
|
|
"static/chunks/app/project/[id]/page.js"
|
|
],
|
|
"/crew/page": [
|
|
"static/chunks/webpack.js",
|
|
"static/chunks/main-app.js",
|
|
"static/chunks/app/crew/page.js"
|
|
]
|
|
}
|
|
} |