欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 房产 > 建筑 > nuxt3项目搭建相关

nuxt3项目搭建相关

2024/11/30 8:43:35 来源:https://blog.csdn.net/hsy0827/article/details/144054016  浏览:    关键词:nuxt3项目搭建相关

nuxt3项目搭建相关

  • 1. 创建项目
  • 2. 配置环境变量
    • 环境变量文件
    • package.json配置启动项
    • nuxt.config.ts配置
    • 在页面使用

1. 创建项目

npx nuxi@latest init <project-name>

2. 配置环境变量

环境变量文件

在这里插入图片描述

package.json配置启动项

{"name": "nuxt-app","private": true,"type": "module","scripts": {"build": "nuxt build --dotenv .env.production","build:dev": "nuxt build --dotenv .env.development","build:test": "nuxt build --dotenv .env.test","dev": "nuxt dev --dotenv .env.development --exec","test": "nuxt dev --dotenv .env.test --exec","prod": "nuxt dev --dotenv .env.production --exec","generate": "nuxt generate","preview": "nuxt preview","postinstall": "nuxt prepare"},"dependencies": {"nuxt": "^3.14.1592","vue": "latest","vue-router": "latest"}
}

nuxt.config.ts配置

// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({runtimeConfig: {public: {APP_BASE_API: process.env.VITE_APP_BASE_API,APP_OPERATION_URL: process.env.VITE_APP_OPERATION_URL,}},compatibilityDate: '2024-11-01',devtools: { enabled: true }
})

在页面使用

两种方式

<template><div>{{ env.VITE_APP_BASE_API }}{{ APP_BASE_API }}</div>
</template><script lang="ts" setup>
const env = import.meta.env;import { useRuntimeConfig } from '#app'
const config = useRuntimeConfig()
const APP_BASE_API = config.public.APP_BASE_API
</script>

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com