- 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.
19 lines
320 B
JSON
19 lines
320 B
JSON
{
|
|
// https://nuxt.com/docs/guide/concepts/typescript
|
|
"files": [],
|
|
"references": [
|
|
{
|
|
"path": "./.nuxt/tsconfig.app.json"
|
|
},
|
|
{
|
|
"path": "./.nuxt/tsconfig.server.json"
|
|
},
|
|
{
|
|
"path": "./.nuxt/tsconfig.shared.json"
|
|
},
|
|
{
|
|
"path": "./.nuxt/tsconfig.node.json"
|
|
}
|
|
]
|
|
}
|