Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: add script to gen nuxt3 style directory structure #186

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@ npm install
pnpm install --shamefully-hoist
```

## Directory Structure

```bash
scripts/nuxt-dirs.sh
```

more info: [directory-structure/assets](https://nuxt.com/docs/guide/directory-structure/assets)

## Development Server

Start the development server on http://localhost:3000
Expand Down
5 changes: 5 additions & 0 deletions scripts/nuxt-dirs.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/sh

for dir in assets components composables content layouts middleware pages public server utils; do
mkdir -p $dir
done