mirror of https://github.com/veypi/OneAuth.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
c306e8edc8 | 6 months ago | |
---|---|---|
.. | ||
assets/css | 6 months ago | |
components | 6 months ago | |
composables | 6 months ago | |
layouts | 6 months ago | |
pages | 6 months ago | |
public | 6 months ago | |
server | 6 months ago | |
.editorconfig | 1 year ago | |
.gitignore | 6 months ago | |
README.md | 6 months ago | |
app.config.ts | 6 months ago | |
app.vue | 6 months ago | |
error.vue | 6 months ago | |
nuxt.config.ts | 6 months ago | |
package-lock.json | 6 months ago | |
package.json | 6 months ago | |
tailwind.config.js | 6 months ago | |
tsconfig.json | 6 months ago | |
yarn.lock | 6 months ago |
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.