Commit e9a3c39a authored by a.frajnd@iq-adv.ru's avatar a.frajnd@iq-adv.ru
Browse files

init proj

parents
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+9 −0
Original line number Diff line number Diff line
node_modules
*.log*
.nuxt
.nitro
.cache
.output
.env
dist
.DS_Store

.npmrc

0 → 100644
+2 −0
Original line number Diff line number Diff line
shamefully-hoist=true
strict-peer-dependencies=false

README.md

0 → 100644
+42 −0
Original line number Diff line number Diff line
# Nuxt 3 Minimal Starter

Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.

## Setup

Make sure to install the dependencies:

```bash
# yarn
yarn install

# npm
npm install

# pnpm
pnpm install
```

## Development Server

Start the development server on `http://localhost:3000`

```bash
npm run dev
```

## Production

Build the application for production:

```bash
npm run build
```

Locally preview production build:

```bash
npm run preview
```

Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.

app.vue

0 → 100644
+5 −0
Original line number Diff line number Diff line
<template>
  <div>
    <NuxtWelcome />
  </div>
</template>

nuxt.config.ts

0 → 100644
+4 −0
Original line number Diff line number Diff line
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({

})