Landing page in Nuxt 3. https://enderman.ch
Go to file
Andrew Illarionov 7a3cdcc1da Wage a war against nuxt-simple-robots. BAD MODULE 2024-06-19 19:21:55 +03:00
assets Fix light theme, fix animation bugs, add programmatic scrolling, improve custom card blog component 2024-06-19 18:06:17 +03:00
components Fix light theme, fix animation bugs, add programmatic scrolling, improve custom card blog component 2024-06-19 18:06:17 +03:00
content/blog Fix light theme, fix animation bugs, add programmatic scrolling, improve custom card blog component 2024-06-19 18:06:17 +03:00
layouts Fix light theme, fix animation bugs, add programmatic scrolling, improve custom card blog component 2024-06-19 18:06:17 +03:00
middleware Fix light theme, fix animation bugs, add programmatic scrolling, improve custom card blog component 2024-06-19 18:06:17 +03:00
pages Fix robots & sitemap SEO disaster 2024-06-19 19:05:58 +03:00
plugins Rewrite to TailwindCSS, enhance the DOM, uninstall Vuetify, improve styles 2024-06-16 22:24:01 +03:00
public Wage a war against nuxt-simple-robots. BAD MODULE 2024-06-19 19:21:55 +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 Fix light theme, fix animation bugs, add programmatic scrolling, improve custom card blog component 2024-06-19 18:06:17 +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 Wage a war against nuxt-simple-robots. BAD MODULE 2024-06-19 19:21:55 +03:00
package-lock.json Fix robots & sitemap SEO disaster 2024-06-19 19:05:58 +03:00
package.json Bump version to 0.3.8 2024-06-19 18:08:22 +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 Fix light theme, fix animation bugs, add programmatic scrolling, improve custom card blog component 2024-06-19 18:06:17 +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.