Skip to content
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

Fix hello world example #2743

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ jspm_packages
package-lock.json

examples/*/**/yarn.lock
examples/*/**/pnpm-lock.yaml

# Logs
*.log
Expand Down
1 change: 1 addition & 0 deletions examples/essentials/hello-world/nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export default defineNuxtConfig({
compatibilityDate: '2024-08-03',
modules: [
'@nuxt/content',
'@nuxt/ui'
Expand Down
8 changes: 5 additions & 3 deletions examples/essentials/hello-world/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@
"name": "example-hello-world",
"private": true,
"scripts": {
"postinstall": "nuxt prepare",
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview"
},
"devDependencies": {
"@nuxt/content": "latest",
"@nuxt/ui": "latest",
"nuxt": "latest"
"@iconify/utils": "^2.1.30",
"@nuxt/content": "^2.13.2",
"@nuxt/ui": "^2.18.3",
"nuxt": "^3.12.4"
}
}