Skip to content

Commit

Permalink
Setup nuxt
Browse files Browse the repository at this point in the history
  • Loading branch information
Amirul committed Oct 5, 2023
1 parent 8afd01d commit 08532e8
Show file tree
Hide file tree
Showing 96 changed files with 6,272 additions and 3,567 deletions.
78 changes: 0 additions & 78 deletions .github/workflows/hugo.yaml

This file was deleted.

26 changes: 24 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,24 @@
/resources
/node_modules
# Nuxt dev/build outputs
.output
.data
.nuxt
.nitro
.cache
dist

# Node dependencies
node_modules

# Logs
logs
*.log

# Misc
.DS_Store
.fleet
.idea

# Local env files
.env
.env.*
!.env.example
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

Empty file removed .hugo_build.lock
Empty file.
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
shamefully-hoist=true
75 changes: 75 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
# Nuxt 3 Minimal Starter

Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.

## Setup

Make sure to install the dependencies:

```bash
# npm
npm install

# pnpm
pnpm install

# yarn
yarn install

# bun
bun install
```

## Development Server

Start the development server on `http://localhost:3000`:

```bash
# npm
npm run dev

# pnpm
pnpm run dev

# yarn
yarn dev

# bun
bun run dev
```

## Production

Build the application for production:

```bash
# npm
npm run build

# pnpm
pnpm run build

# yarn
yarn build

# bun
bun run build
```

Locally preview production build:

```bash
# npm
npm run preview

# pnpm
pnpm run preview

# yarn
yarn preview

# bun
bun run preview
```

Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.
5 changes: 5 additions & 0 deletions app.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<template>
<div>
<NuxtWelcome />
</div>
</template>
25 changes: 0 additions & 25 deletions config/_default/config.toml

This file was deleted.

56 changes: 0 additions & 56 deletions config/_default/menus.toml

This file was deleted.

30 changes: 0 additions & 30 deletions config/_default/params.toml

This file was deleted.

42 changes: 0 additions & 42 deletions content/_index.md

This file was deleted.

9 changes: 0 additions & 9 deletions content/categories/_index.md

This file was deleted.

6 changes: 0 additions & 6 deletions content/categories/articles/_index.md

This file was deleted.

6 changes: 0 additions & 6 deletions content/categories/journals/_index.md

This file was deleted.

6 changes: 0 additions & 6 deletions content/categories/uncategories/_index.md

This file was deleted.

Loading

0 comments on commit 08532e8

Please sign in to comment.