Skip to content
Draft
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
75 changes: 75 additions & 0 deletions examples/nuxt/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
# Nuxt Minimal Starter

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

## Setup

Make sure to install 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 dev

# yarn
yarn dev

# bun
bun run dev
```

## Production

Build the application for production:

```bash
# npm
npm run build

# pnpm
pnpm build

# yarn
yarn build

# bun
bun run build
```

Locally preview production build:

```bash
# npm
npm run preview

# pnpm
pnpm preview

# yarn
yarn preview

# bun
bun run preview
```

Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 1 addition & 2 deletions examples/nuxt/nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: '2024-04-03',
future: { compatibilityVersion: 4 },
devtools: { enabled: true },
css: ['~/assets/scss/main.scss'],
ssr: false,
});
26 changes: 6 additions & 20 deletions examples/nuxt/package.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,19 @@
{
"name": "nuxt-app",
"private": true,
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"start": "nuxt dev",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"test": "wdio run ./test/wdio.conf.ts"
"postinstall": "nuxt prepare"
},
"dependencies": {
"@six-group/ui-library": "*",
"@six-group/ui-library-vue": "*",
"nuxt": "^3.16.2"
},
"optionalDependencies": {
"@oxc-parser/binding-linux-x64-gnu": "^0.72.3",
"@rollup/rollup-linux-x64-gnu": "^4.43.0"
},
"devDependencies": {
"@wdio/cli": "^9.4.5",
"@wdio/globals": "^9.1.3",
"@wdio/local-runner": "^9.1.3",
"@wdio/mocha-framework": "^9.1.3",
"@wdio/spec-reporter": "^9.1.3",
"sass": "^1.89.2",
"tsx": "^4.19.1",
"typescript": "^5.4.5",
"wdio-nuxt-service": "^0.2.0"
"nuxt": "^4.1.3",
"vue": "^3.5.22",
"vue-router": "^4.6.3"
}
}
2 changes: 2 additions & 0 deletions examples/nuxt/public/robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
User-Agent: *
Disallow:
3 changes: 0 additions & 3 deletions examples/nuxt/server/tsconfig.json

This file was deleted.

70 changes: 0 additions & 70 deletions examples/nuxt/test/tsconfig.json

This file was deleted.

Loading
Loading