Landing page in Nuxt 3. https://enderman.ch
Go to file
Andrew Illarionov 10e3a7fc40 Update blog post 2024-03-02 15:50:17 +03:00
assets Update blog 2024-03-02 15:48:39 +03:00
components Version 0.2.1 2024-02-20 22:14:58 +03:00
composables Version 0.2.1 2024-02-20 22:14:58 +03:00
content/blog Update blog post 2024-03-02 15:50:17 +03:00
iconify Created blog page, many improvements 2024-02-18 11:30:50 +03:00
layouts Raw blog finished 2024-02-20 21:15:29 +03:00
middleware Raw blog finished 2024-02-20 21:15:29 +03:00
pages Fix the 'Page not found' bug 2024-02-20 22:47:01 +03:00
plugins Finished integrating Shadow DOM icons, first steps towards dynamic theme 2024-01-28 21:22:05 +03:00
public Update blog 2024-03-02 15:48:39 +03:00
server Raw blog finished 2024-02-20 21:15:29 +03:00
stores Version 0.2.1 2024-02-20 22:14:58 +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 Version 0.2.1 2024-02-20 22:14:58 +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 Raw blog finished 2024-02-20 21:15:29 +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 Raw blog finished 2024-02-20 21:15:29 +03:00
package-lock.json Created blog page, many improvements 2024-02-18 11:30:50 +03:00
package.json Version 0.2.1 2024-02-20 22:14:58 +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.