Landing page in Nuxt 3. https://enderman.ch
Go to file
Andrew Illarionov 2bd1e4a512 Took my time to tweak linter configurations 2023-11-23 18:14:23 +03:00
assets Added stylelint, improved code readability, implemented swipe controls 2023-11-23 02:53:30 +03:00
components Took my time to tweak linter configurations 2023-11-23 18:14:23 +03:00
layouts Took my time to tweak linter configurations 2023-11-23 18:14:23 +03:00
pages Added stylelint, improved code readability, implemented swipe controls 2023-11-23 02:53:30 +03:00
plugins Conditional rendering, pages updated 2023-11-20 22:14:20 +03:00
public Overall improvements, updated pages 2023-11-20 00:58:47 +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
.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 Took my time to tweak linter configurations 2023-11-23 18:14:23 +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
README.md Initial commit 2023-11-06 20:36:54 +03:00
app.vue Added stylelint, improved code readability, implemented swipe controls 2023-11-23 02:53:30 +03:00
nuxt.config.ts Took my time to tweak linter configurations 2023-11-23 18:14:23 +03:00
package-lock.json Added stylelint, improved code readability, implemented swipe controls 2023-11-23 02:53:30 +03:00
package.json Added stylelint, improved code readability, implemented swipe controls 2023-11-23 02:53:30 +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.