modified: main_dc/valitovgaziz/html/index.html

new file:   main_dc/yalarba/easySite/package-lock.json
	new file:   main_dc/yalarba/easySite/spa_es/.gitignore
	new file:   main_dc/yalarba/easySite/spa_es/README.md
	new file:   main_dc/yalarba/easySite/spa_es/app/app.vue
	new file:   main_dc/yalarba/easySite/spa_es/eslint.config.mjs
	new file:   main_dc/yalarba/easySite/spa_es/nuxt.config.ts
	new file:   main_dc/yalarba/easySite/spa_es/package-lock.json
	new file:   main_dc/yalarba/easySite/spa_es/package.json
	new file:   main_dc/yalarba/easySite/spa_es/public/favicon.ico
	new file:   main_dc/yalarba/easySite/spa_es/public/robots.txt
	new file:   main_dc/yalarba/easySite/spa_es/tsconfig.json
init nuxt app for fronend easySite
This commit is contained in:
2025-10-27 11:32:31 +05:00
parent 49a22832d6
commit 5b3c26d74e
12 changed files with 17872 additions and 166 deletions
+6
View File
@@ -0,0 +1,6 @@
{
"name": "easySite",
"lockfileVersion": 3,
"requires": true,
"packages": {}
}
@@ -0,0 +1,24 @@
# Nuxt dev/build outputs
.output
.data
.nuxt
.nitro
.cache
dist
# Node dependencies
node_modules
# Logs
logs
*.log
# Misc
.DS_Store
.fleet
.idea
# Local env files
.env
.env.*
!.env.example
+75
View File
@@ -0,0 +1,75 @@
# Nuxt Minimal Starter
Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
## Setup
Make sure to install dependencies:
```bash
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
# bun
bun install
```
## Development Server
Start the development server on `http://localhost:3000`:
```bash
# npm
npm run dev
# pnpm
pnpm dev
# yarn
yarn dev
# bun
bun run dev
```
## Production
Build the application for production:
```bash
# npm
npm run build
# pnpm
pnpm build
# yarn
yarn build
# bun
bun run build
```
Locally preview production build:
```bash
# npm
npm run preview
# pnpm
pnpm preview
# yarn
yarn preview
# bun
bun run preview
```
Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.
@@ -0,0 +1,6 @@
<template>
<div>
<NuxtRouteAnnouncer />
<NuxtWelcome />
</div>
</template>
@@ -0,0 +1,6 @@
// @ts-check
import withNuxt from './.nuxt/eslint.config.mjs'
export default withNuxt(
// Your custom configs here
)
@@ -0,0 +1,13 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: '2025-07-15',
devtools: { enabled: true },
modules: [
'@nuxt/content',
'@nuxt/eslint',
'@nuxt/image',
'@nuxt/scripts',
'@nuxt/ui'
]
})
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,25 @@
{
"name": "spa_es",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare"
},
"dependencies": {
"@nuxt/content": "^3.7.1",
"@nuxt/eslint": "^1.9.0",
"@nuxt/image": "^1.11.0",
"@nuxt/scripts": "^0.13.0",
"@nuxt/ui": "^4.1.0",
"@unhead/vue": "^2.0.19",
"eslint": "^9.38.0",
"nuxt": "^4.2.0",
"typescript": "^5.9.3",
"vue": "^3.5.22",
"vue-router": "^4.6.3"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

@@ -0,0 +1,2 @@
User-Agent: *
Disallow:
@@ -0,0 +1,18 @@
{
// 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"
}
]
}