Landing page in Nuxt 3. https://enderman.ch
Go to file
Andrew Illarionov 014e64d174 Move over to iconify-icon, wrap around 2024-01-27 23:29:31 +03:00
assets Move over to iconify-icon, wrap around 2024-01-27 23:29:31 +03:00
components Move over to iconify-icon, wrap around 2024-01-27 23:29:31 +03:00
composables Move to appConfig, Vuetify 3 2024-01-27 19:17:30 +03:00
layouts Added options, preparing for Quasar rewrite 2024-01-23 23:53:21 +03:00
pages Move over to iconify-icon, wrap around 2024-01-27 23:29:31 +03:00
public Dockerized the application, fixed fonts, improved SEO, upgraded to Nuxt 3.8.2 2023-11-25 19:52:25 +03:00
server ECMAPortal integration / Development start 2023-11-10 18:42:55 +03:00
stores Added options, preparing for Quasar rewrite 2024-01-23 23:53:21 +03:00
.browserslistrc Added stylelint, improved code readability, implemented swipe controls 2023-11-23 02:53:30 +03:00
.dockerignore Dockerized the application, fixed fonts, improved SEO, upgraded to Nuxt 3.8.2 2023-11-25 19:52:25 +03:00
.eslintrc.cjs Move to appConfig, Vuetify 3 2024-01-27 19:17:30 +03:00
.gitignore Initial commit 2023-11-06 20:36:54 +03:00
.prettierignore ECMAPortal integration / Development start 2023-11-10 18:42:55 +03:00
.prettierrc ECMAPortal integration / Development start 2023-11-10 18:42:55 +03:00
.stylelintcache Move over to iconify-icon, wrap around 2024-01-27 23:29:31 +03:00
.stylelintignore Added stylelint, improved code readability, implemented swipe controls 2023-11-23 02:53:30 +03:00
.stylelintrc.cjs Added stylelint, improved code readability, implemented swipe controls 2023-11-23 02:53:30 +03:00
Dockerfile Dockerized the application, fixed fonts, improved SEO, upgraded to Nuxt 3.8.2 2023-11-25 19:52:25 +03:00
README.md Initial commit 2023-11-06 20:36:54 +03:00
app.config.ts Move to appConfig, Vuetify 3 2024-01-27 19:17:30 +03:00
app.vue Move to appConfig, Vuetify 3 2024-01-27 19:17:30 +03:00
config.ts Move to appConfig, Vuetify 3 2024-01-27 19:17:30 +03:00
docker-compose.yml Dockerized the application, fixed fonts, improved SEO, upgraded to Nuxt 3.8.2 2023-11-25 19:52:25 +03:00
nuxt.config.ts Move over to iconify-icon, wrap around 2024-01-27 23:29:31 +03:00
package-lock.json Move over to iconify-icon, wrap around 2024-01-27 23:29:31 +03:00
package.json Move over to iconify-icon, wrap around 2024-01-27 23:29:31 +03:00
tsconfig.json Move to appConfig, Vuetify 3 2024-01-27 19:17:30 +03:00

README.md

Nuxt 3 Minimal Starter

Look at the Nuxt 3 documentation to learn more.

Setup

Make sure to install the dependencies:

# npm
npm install

# pnpm
pnpm install

# yarn
yarn install

# bun
bun install

Development Server

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

# npm
npm run dev

# pnpm
pnpm run dev

# yarn
yarn dev

# bun
bun run dev

Production

Build the application for production:

# npm
npm run build

# pnpm
pnpm run build

# yarn
yarn build

# bun
bun run build

Locally preview production build:

# npm
npm run preview

# pnpm
pnpm run preview

# yarn
yarn preview

# bun
bun run preview

Check out the deployment documentation for more information.