前端网站代码

Fly 720fb5e62a 提交 3 tygodni temu
app d9a8bb3dc7 提交 1 miesiąc temu
assets 720fb5e62a 提交 3 tygodni temu
components cb60ffd913 提交 3 tygodni temu
composables bfc2523548 提交 4 tygodni temu
lang c617dad67a 提交 1 miesiąc temu
pages 720fb5e62a 提交 3 tygodni temu
plugins b2d04a7f28 初始代码 1 miesiąc temu
public b2d04a7f28 初始代码 1 miesiąc temu
store b2d04a7f28 初始代码 1 miesiąc temu
.env.development 033a45b6bb 提交 1 miesiąc temu
.env.production 033a45b6bb 提交 1 miesiąc temu
.gitignore b2d04a7f28 初始代码 1 miesiąc temu
.tgitconfig b2d04a7f28 初始代码 1 miesiąc temu
README.md b2d04a7f28 初始代码 1 miesiąc temu
app.config.ts b2d04a7f28 初始代码 1 miesiąc temu
app.vue b2d04a7f28 初始代码 1 miesiąc temu
auto-imports.d.ts b2d04a7f28 初始代码 1 miesiąc temu
components.d.ts b23df98e11 提交 3 tygodni temu
nuxt.config.ts b2d04a7f28 初始代码 1 miesiąc temu
nuxt.config.ts.bak b2d04a7f28 初始代码 1 miesiąc temu
package-lock.json b2d04a7f28 初始代码 1 miesiąc temu
package.json b2d04a7f28 初始代码 1 miesiąc temu
tsconfig.json b2d04a7f28 初始代码 1 miesiąc temu
viewer.properties b2d04a7f28 初始代码 1 miesiąc temu

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.