Landing page in Nuxt 3. https://enderman.ch
Go to file
Andrew Illarionov 858142f09a Unstage cache 2024-06-18 22:00:54 +03:00
assets Clean up styles, fix and improve the blog post card layout 2024-06-18 21:48:50 +03:00
components Clean up styles, fix and improve the blog post card layout 2024-06-18 21:48:50 +03:00
content/blog Upgrade to Nuxt 3.12, simplify logic 2024-06-15 13:14:34 +03:00
layouts Rewrite to TailwindCSS, enhance the DOM, uninstall Vuetify, improve styles 2024-06-16 22:24:01 +03:00
middleware Raw blog finished 2024-02-20 21:15:29 +03:00
pages Clean up styles, fix and improve the blog post card layout 2024-06-18 21:48:50 +03:00
plugins Rewrite to TailwindCSS, enhance the DOM, uninstall Vuetify, improve styles 2024-06-16 22:24:01 +03:00
public Upload blog post thumbnail 2024-03-02 15:53:47 +03:00
server Raw blog finished 2024-02-20 21:15:29 +03:00
stores Rewrite to TailwindCSS, enhance the DOM, uninstall Vuetify, improve styles 2024-06-16 22:24:01 +03:00
.dockerignore Dockerized the application, fixed fonts, improved SEO, upgraded to Nuxt 3.8.2 2023-11-25 19:52:25 +03:00
.gitignore Rewrite to TailwindCSS, enhance the DOM, uninstall Vuetify, improve styles 2024-06-16 22:24:01 +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 Rewrite to TailwindCSS, enhance the DOM, uninstall Vuetify, improve styles 2024-06-16 22:24:01 +03:00
app.vue Rewrite to TailwindCSS, enhance the DOM, uninstall Vuetify, improve styles 2024-06-16 22:24:01 +03:00
config.ts Rewrite to TailwindCSS, enhance the DOM, uninstall Vuetify, improve styles 2024-06-16 22:24:01 +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
eslint.config.mjs Rewrite to TailwindCSS, enhance the DOM, uninstall Vuetify, improve styles 2024-06-16 22:24:01 +03:00
nuxt.config.ts Rewrite to TailwindCSS, enhance the DOM, uninstall Vuetify, improve styles 2024-06-16 22:24:01 +03:00
package-lock.json Rewrite to TailwindCSS, enhance the DOM, uninstall Vuetify, improve styles 2024-06-16 22:24:01 +03:00
package.json Rewrite to TailwindCSS, enhance the DOM, uninstall Vuetify, improve styles 2024-06-16 22:24:01 +03:00
prettier.config.mjs Rewrite to TailwindCSS, enhance the DOM, uninstall Vuetify, improve styles 2024-06-16 22:24:01 +03:00
stylelint.config.mjs Rewrite to TailwindCSS, enhance the DOM, uninstall Vuetify, improve styles 2024-06-16 22:24:01 +03:00
tailwind.config.ts Rewrite to TailwindCSS, enhance the DOM, uninstall Vuetify, improve styles 2024-06-16 22:24:01 +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.