-
-
Notifications
You must be signed in to change notification settings - Fork 0
feat: initialize project structure, Nuxt v4, metadata & project workspace #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
e5fc8e5
chore: extend & refactor all `package.json` content
toddeTV 6101641
chore: configure pnpm workspace
toddeTV 5b135eb
feat: add sponsoring
toddeTV b77d76f
refactor: CodeRabbitAI configuration file
toddeTV 85d8744
chore: set up VSCode environment with settings & recommended extensions
toddeTV 0be8f4e
feat: clean up Nuxt v4 starter boilerplate
toddeTV fa69f0f
chore: extend `.gitignore`
toddeTV f761571
docs: add descriptive comment to nuxt content configuration file
toddeTV 3162881
feat: configure Nuxt via `nuxt.config.ts`
toddeTV c65cd42
chore: remove VSCode environment
toddeTV File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| github: toddeTV |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| shamefully-hoist=true | ||
|
|
||
| # modify package saving behavior | ||
| save-dev=true | ||
| save-prefix=~ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,24 +1,3 @@ | ||
| # Welcome to Nuxt Content Starter | ||
| # todde.tv | ||
|
|
||
| This is the main page displaying Markdown located at [content/index.md](https://github.com/nuxt/starter/blob/content/content/index.md). | ||
|
|
||
| Move to [about](/about) page. | ||
|
|
||
| ## Manage your Contents | ||
|
|
||
| Create new pages or modify the existing ones in `content/` directory. | ||
|
|
||
| ## Query & Render Pages | ||
|
|
||
| You can find an example of querying contents and rendering them in a [catch-all page](https://github.com/nuxt/starter/blob/content/app/pages/%5B...slug%5D.vue) | ||
|
|
||
| ## Integrate Vue Component | ||
|
|
||
| ::alert{color="green"} | ||
| The current [alert](https://github.com/nuxt/starter/blob/content/app/components/Alert.vue) and the [counter](https://github.com/nuxt/starter/blob/content/app/components/Counter.vue) below are `Vue` components integrated into the Markdown. | ||
| :: | ||
|
|
||
| ::counter | ||
| :: | ||
|
|
||
| Checkout out the [documentation](https://content.nuxt.com/docs/getting-started) to learn more. | ||
| Welcome. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,12 +1,83 @@ | ||
| // https://nuxt.com/docs/api/configuration/nuxt-config | ||
| export default defineNuxtConfig({ | ||
| compatibilityDate: '2026-03-04', | ||
|
|
||
| app: { | ||
| head: { | ||
| // titleTemplate, description, og:site_name, and htmlAttrs.lang are handled by `@nuxtjs/seo` via `site` | ||
| // config — do not duplicate here. | ||
| meta: [ | ||
| { name: 'application-name', content: 'todde.tv' }, | ||
| { name: 'author', content: 'Thorsten Seyschab' }, | ||
|
|
||
| // Dark-only site: inform browser about color scheme and mobile chrome color. | ||
| { name: 'color-scheme', content: 'dark' }, | ||
| { name: 'theme-color', content: '#0a0a0b' }, | ||
|
|
||
| // Although not a standard OG tag, some tools check for it. | ||
| // Standard OG images are handled by `nuxt-og-image` module. | ||
| // Standard Schema.org logos are handled by `nuxt-schema-org` module. | ||
| { property: 'og:logo', content: 'favicon.ico' }, | ||
| ], | ||
| htmlAttrs: { | ||
| 'data-theme-source': 'todde.tv', | ||
| }, | ||
| }, | ||
| }, | ||
|
|
||
| modules: [ | ||
| '@nuxt/content', | ||
| '@nuxt/eslint', | ||
| '@nuxt/fonts', | ||
| '@nuxt/icon', | ||
| '@nuxt/image', | ||
| ], | ||
| devtools: { enabled: true }, | ||
| compatibilityDate: '2024-04-03', | ||
|
|
||
| runtimeConfig: { | ||
| public: { | ||
| }, | ||
| }, | ||
|
|
||
| ssr: true, | ||
|
|
||
| // nitro: { | ||
| // }, | ||
|
|
||
| css: [ | ||
| ], | ||
|
|
||
| devtools: { | ||
| enabled: true, | ||
| }, | ||
|
|
||
| typescript: { // for TypeScript, see https://nuxt.com/docs/guide/concepts/typescript | ||
| // Customize app/server TypeScript config | ||
| tsConfig: { | ||
| compilerOptions: { | ||
| strict: true, | ||
| }, | ||
| }, | ||
|
|
||
| // Customize build-time TypeScript config | ||
| nodeTsConfig: { | ||
| compilerOptions: { | ||
| strict: true, | ||
| }, | ||
| }, | ||
| }, | ||
|
|
||
| content: { // for `@nuxt/content` | ||
| }, | ||
|
|
||
| eslint: { // for `@nuxt/eslint` | ||
| }, | ||
|
|
||
| fonts: { // for `@nuxt/fonts` | ||
| }, | ||
|
|
||
| icon: { // for `@nuxt/icon` | ||
| }, | ||
|
|
||
| image: { // for `@nuxt/image` | ||
| }, | ||
| }) | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,20 +1,82 @@ | ||
| { | ||
| "name": "todde-tv", | ||
| "name": "todde.tv", | ||
| "private": true, | ||
| "type": "module", | ||
| "packageManager": "pnpm@10.30.3", | ||
| "description": "Personal portfolio website for Thorsten Seyschab - IT consultant, senior full-stack developer, and conference speaker.", | ||
| "author": "Thorsten Seyschab <business@todde.tv> (https://todde.tv/)", | ||
| "contributors": [ | ||
| { | ||
| "name": "Thorsten Seyschab", | ||
| "email": "business@todde.tv", | ||
| "url": "https://todde.tv/" | ||
| } | ||
| ], | ||
| "license": "SEE LICENSE IN LICENSE.md", | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "git+https://github.com/toddeTV/todde.tv.git" | ||
| }, | ||
| "homepage": "https://todde.tv/", | ||
| "bugs": { | ||
| "url": "https://github.com/toddeTV/todde.tv/issues" | ||
| }, | ||
| "keywords": [ | ||
| "toddeTV", | ||
| "todde.tv", | ||
| "nuxt", | ||
| "nuxt4", | ||
| "nuxtjs", | ||
| "vue", | ||
| "vue3", | ||
| "vuejs", | ||
| "vite", | ||
| "typescript", | ||
| "javascript", | ||
| "web", | ||
| "website", | ||
| "portfolio", | ||
| "personal-website", | ||
| "static-site", | ||
| "tailwindcss", | ||
| "ssg" | ||
| ], | ||
| "engines": { | ||
| "node": "22.x", | ||
| "pnpm": "10.x" | ||
| }, | ||
| "scripts": { | ||
| "build": "nuxt build", | ||
| "build": "cross-env NODE_OPTIONS=--max-old-space-size=8192 nuxt build", | ||
| "dev": "nuxt dev", | ||
| "generate": "nuxt generate", | ||
| "preview": "nuxt preview" | ||
| "dev:preset": "nuxt dev --port 3000 --public", | ||
| "fix:lint": "run-s \"test:lint --fix\"", | ||
| "generate": "cross-env NODE_OPTIONS=--max-old-space-size=8192 nuxt generate", | ||
| "nuxi": "nuxi", | ||
| "nuxt": "nuxt", | ||
| "prepare": "nuxt prepare", | ||
| "preview": "nuxt preview", | ||
| "reset": "rimraf node_modules .nuxt .output dist .data", | ||
| "test": "run-s test:*", | ||
| "test:lint": "eslint .", | ||
| "test:types": "nuxt typecheck" | ||
| }, | ||
| "dependencies": { | ||
| "@nuxt/content": "^3.12.0", | ||
| "@nuxt/eslint": "1.15.2", | ||
| "@nuxt/fonts": "0.14.0", | ||
| "@nuxt/icon": "2.2.1", | ||
| "@nuxt/image": "2.0.0", | ||
| "better-sqlite3": "^12.6.2", | ||
| "nuxt": "^4.3.1" | ||
| "nuxt": "~4.3.1", | ||
| "vue": "~3.5.29" | ||
| }, | ||
| "devDependencies": { | ||
| "@nuxt/content": "~3.12.0", | ||
| "@nuxt/eslint": "~1.15.2", | ||
| "@nuxt/fonts": "~0.14.0", | ||
| "@nuxt/icon": "~2.2.1", | ||
| "@nuxt/image": "~2.0.0", | ||
| "better-sqlite3": "~12.6.2", | ||
| "cross-env": "~10.1.0", | ||
| "eslint": "~10.0.2", | ||
| "npm-run-all2": "~8.0.4", | ||
| "nuxi": "~3.33.1", | ||
| "rimraf": "~6.1.3", | ||
| "typescript": "~5.9.3", | ||
| "zod": "~4.3.6" | ||
| } | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.