Landing page in Nuxt 3. https://enderman.ch
Go to file
Andrew Illarionov 44c60f7069 Blog slowly looming over 2024-02-19 22:49:55 +03:00
assets Blog slowly looming over 2024-02-19 22:49:55 +03:00
components Added new icons, improved the blog 2024-02-19 01:18:50 +03:00
composables Finished integrating Shadow DOM icons, first steps towards dynamic theme 2024-01-28 21:22:05 +03:00
content/blog Blog slowly looming over 2024-02-19 22:49:55 +03:00
iconify Created blog page, many improvements 2024-02-18 11:30:50 +03:00
layouts Remove v-if prop anti-pattern, clean up, add reader mode 2024-02-18 14:36:50 +03:00
middleware Remove v-if prop anti-pattern, clean up, add reader mode 2024-02-18 14:36:50 +03:00
pages Blog slowly looming over 2024-02-19 22:49:55 +03:00
plugins Finished integrating Shadow DOM icons, first steps towards dynamic theme 2024-01-28 21:22:05 +03:00
public Blog slowly looming over 2024-02-19 22:49:55 +03:00
server ECMAPortal integration / Development start 2023-11-10 18:42:55 +03:00
stores Added new icons, improved the blog 2024-02-19 01:18:50 +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 Added new icons, improved the blog 2024-02-19 01:18:50 +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 Blog slowly looming over 2024-02-19 22:49:55 +03:00
config.ts Created blog page, many improvements 2024-02-18 11:30:50 +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 Blog slowly looming over 2024-02-19 22:49:55 +03:00
package-lock.json Created blog page, many improvements 2024-02-18 11:30:50 +03:00
package.json Created blog page, many improvements 2024-02-18 11:30:50 +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.