- Added favicon.ico to the public directory. - Created robots.txt to allow all user agents with no disallowed paths. - Initialized tsconfig.json with references to Nuxt TypeScript configurations.
22 lines
419 B
JSON
22 lines
419 B
JSON
{
|
|
"name": "nuxt-app",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "nuxt build",
|
|
"dev": "nuxt dev",
|
|
"generate": "nuxt generate",
|
|
"preview": "nuxt preview",
|
|
"postinstall": "nuxt prepare"
|
|
},
|
|
"dependencies": {
|
|
"@nuxt/ui": "^3.3.2",
|
|
"nuxt": "^4.0.3",
|
|
"vue": "^3.5.20",
|
|
"vue-router": "^4.5.1"
|
|
},
|
|
"devDependencies": {
|
|
"@nuxtjs/tailwindcss": "^6.14.0"
|
|
}
|
|
}
|