Landing page in Nuxt 3. https://enderman.ch
Go to file
Andrew Illarionov 3c69f73dc6 0.1.3 2023-11-25 20:10:23 +03:00
assets Dockerized the application, fixed fonts, improved SEO, upgraded to Nuxt 3.8.2 2023-11-25 19:52:25 +03:00
components Dockerized the application, fixed fonts, improved SEO, upgraded to Nuxt 3.8.2 2023-11-25 19:52:25 +03:00
layouts Dockerized the application, fixed fonts, improved SEO, upgraded to Nuxt 3.8.2 2023-11-25 19:52:25 +03:00
pages Dockerized the application, fixed fonts, improved SEO, upgraded to Nuxt 3.8.2 2023-11-25 19:52:25 +03:00
plugins Dockerized the application, fixed fonts, improved SEO, upgraded to Nuxt 3.8.2 2023-11-25 19:52:25 +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 Took my time to tweak linter configurations 2023-11-23 18:14:23 +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 Took my time to tweak linter configurations 2023-11-23 18:14:23 +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 Dockerized the application, fixed fonts, improved SEO, upgraded to Nuxt 3.8.2 2023-11-25 19:52:25 +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.vue Dockerized the application, fixed fonts, improved SEO, upgraded to Nuxt 3.8.2 2023-11-25 19:52:25 +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 Dockerized the application, fixed fonts, improved SEO, upgraded to Nuxt 3.8.2 2023-11-25 19:52:25 +03:00
package-lock.json 0.1.3 2023-11-25 20:10:23 +03:00
package.json 0.1.3 2023-11-25 20:10:23 +03:00
tsconfig.json Alpha version of the app 2023-11-13 23:37:35 +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.