# Nuxt3中间件转发学习源码 **Repository Path**: running-team/nuxt3-chapter3 ## Basic Information - **Project Name**: Nuxt3中间件转发学习源码 - **Description**: 第三章,Nuxt3中间件middleware的理解与使用 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: chapter3-done - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-07-15 - **Last Updated**: 2022-07-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: nuxt3 ## README # Nuxt 3 路由篇的学习例子 官方学习文档 [nuxt 3 documentation](https://v3.nuxtjs.org). ## Setup 安装依赖: ```bash # yarn yarn install # npm npm install # pnpm pnpm install --shamefully-hoist ``` ## Development Server 本地开发环境地址 http://localhost:3000, 本应该运行npm run dev, 但我再package.jsono中把dev被我修改为了serve ```bash npm run serve ``` ## Production Build the application for production: ```bash npm run build ``` Locally preview production build: ```bash npm run preview ``` Checkout the [deployment documentation](https://v3.nuxtjs.org/guide/deploy/presets) for more information.