提交 8f396e34 authored 作者: ziwencao's avatar ziwencao

build: build更新.

上级 bc543f9e
# 默认标题 # 默认标题
VITE_APP_TITLE=TEST_VUE3_VITE VITE_APP_TITLE=诚联信-消息中台
\ No newline at end of file
# 开发环境
NODE_ENV=dev
# 接口请求地址
#VITE_APP_BASE_URL=https://dapi.clxkj.cn:8088/
VITE_APP_BASE_URL=https://api.clxkj.cn:8088/
# VITE_APP_BASE_URL=https://papi.clxkj.cn:8088/
# 静态资源地址
# VITE_APP_STATIC_URL=https://clx-dev.oss-cn-beijing.aliyuncs.com
VITE_APP_STATIC_URL=https://clx-prod.oss-cn-beijing.aliyuncs.com
# VITE_APP_STATIC_URL=https://img.91msl.com
# 构建资源公共路径
VITE_PUBLIC_PATH=https://127.0.0.1:5173
\ No newline at end of file
# 开发环境 # 开发环境
NODE_ENV=development NODE_ENV=dev
# 接口请求地址 # 接口请求地址
VITE_APP_BASE_URL=https://dapi.clxkj.cn:8088/ VITE_APP_BASE_URL=https://dapi.clxkj.cn:8088/
# 静态资源地址 # 静态资源地址
VITE_APP_STATIC_URL=http://clx-dev.oss-cn-beijing.aliyuncs.com VITE_APP_STATIC_URL=https://clx-dev.oss-cn-beijing.aliyuncs.com
# 构建资源公共路径 # 构建资源公共路径
VITE_PUBLIC_PATH=/ VITE_PUBLIC_PATH=
\ No newline at end of file \ No newline at end of file
...@@ -5,7 +5,7 @@ NODE_ENV=pre ...@@ -5,7 +5,7 @@ NODE_ENV=pre
VITE_APP_BASE_URL=https://papi.clxkj.cn:8088/ VITE_APP_BASE_URL=https://papi.clxkj.cn:8088/
# 静态资源地址 # 静态资源地址
VITE_APP_STATIC_URL=http://clx-dev.oss-cn-beijing.aliyuncs.com VITE_APP_STATIC_URL=https://clx-prod.oss-cn-beijing.aliyuncs.com
# 构建资源公共路径 # 构建资源公共路径
VITE_PUBLIC_PATH=/ VITE_PUBLIC_PATH=
\ No newline at end of file \ No newline at end of file
# 生产环境 # 生产环境
NODE_ENV=production NODE_ENV=prod
# 接口请求地址 # 接口请求地址
VITE_APP_BASE_URL=https://api1.91msl.com:8088/ VITE_APP_BASE_URL=https://api1.91msl.com:8088/
# 静态资源地址 # 静态资源地址
VITE_APP_STATIC_URL=http://clx-prod.oss-cn-beijing.aliyuncs.com VITE_APP_STATIC_URL=https://clx-prod.oss-cn-beijing.aliyuncs.com
# 构建资源公共路径 # 构建资源公共路径
VITE_PUBLIC_PATH=/ VITE_PUBLIC_PATH=/
\ No newline at end of file
...@@ -4,8 +4,8 @@ NODE_ENV=test ...@@ -4,8 +4,8 @@ NODE_ENV=test
# 接口请求地址 # 接口请求地址
VITE_APP_BASE_URL=https://api.clxkj.cn:8088/ VITE_APP_BASE_URL=https://api.clxkj.cn:8088/
# 静态资源地址 # 静态资源地址 http版http://clx-dev.oss-cn-beijing.aliyuncs.com
VITE_APP_STATIC_URL=http://clx-dev.oss-cn-beijing.aliyuncs.com VITE_APP_STATIC_URL=https://clx-dev.oss-cn-beijing.aliyuncs.com
# 构建资源公共路径 # 构建资源公共路径
VITE_PUBLIC_PATH=/ VITE_PUBLIC_PATH=/
\ No newline at end of file
...@@ -8,7 +8,6 @@ export {} ...@@ -8,7 +8,6 @@ export {}
declare module '@vue/runtime-core' { declare module '@vue/runtime-core' {
export interface GlobalComponents { export interface GlobalComponents {
ElAside: typeof import('element-plus/es')['ElAside'] ElAside: typeof import('element-plus/es')['ElAside']
ElButton: typeof import('element-plus/es')['ElButton']
ElContainer: typeof import('element-plus/es')['ElContainer'] ElContainer: typeof import('element-plus/es')['ElContainer']
ElHeader: typeof import('element-plus/es')['ElHeader'] ElHeader: typeof import('element-plus/es')['ElHeader']
ElMain: typeof import('element-plus/es')['ElMain'] ElMain: typeof import('element-plus/es')['ElMain']
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -3,16 +3,18 @@ ...@@ -3,16 +3,18 @@
"version": "0.0.0", "version": "0.0.0",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",
"test": "vite --mode test",
"pre": "vite --mode pre",
"build": "run-p type-check build-only", "build": "run-p type-check build-only",
"preview": "vite preview --port 4173", "preview": "vite preview --port 4173",
"test:unit": "vitest --environment jsdom", "test:unit": "vitest --environment jsdom",
"test:e2e": "start-server-and-test preview http://localhost:4173/ 'cypress open --e2e'", "test:e2e": "start-server-and-test preview http://localhost:4173/ 'cypress open --e2e'",
"test:e2e:ci": "start-server-and-test preview http://localhost:4173/ 'cypress run --e2e'", "test:e2e:ci": "start-server-and-test preview http://localhost:4173/ 'cypress run --e2e'",
"build-only": "vite build", "build-only": "vite build",
"build-test": "run-p type-check && vite build --mode test", "buildTest": "run-p type-check && vite build --mode test",
"build-pre": "run-p type-check && vite build --mode pre", "buildPre": "run-p type-check && vite build --mode pre",
"build-production": "run-p type-check && vite build --mode production", "buildProd": "run-p type-check && vite build --mode prod",
"build-development": "run-p type-check && vite build --mode development", "buildDev": "run-p type-check && vite build --mode dev",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false", "type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore" "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
}, },
......
/** @type {import('tailwindcss').Config} */ /** @type {import('tailwindcss').Config} */
// eslint-disable-next-line no-undef // eslint-disable-next-line no-undef
module.exports = { module.exports = {
mode: "jit", mode: "jit",
content: ["index.html", "./src/**/*.{js,jsx,ts,tsx,vue,html}"], content: ["index.html", "./src/**/*.{js,jsx,ts,tsx,vue,html}"],
darkMode: "media", // or 'media' or 'class' darkMode: "media", // or 'media' or 'class'
theme: { theme: {
extend: {}, extend: {},
backgroundColor: (theme) => ({ backgroundColor: (theme) => ({
...theme("colors"), ...theme("colors"),
orange: "#ea5529", orange: "#ea5529",
}), }),
textColor: (theme) => ({ textColor: (theme) => ({
...theme("colors"), ...theme("colors"),
orange: "#ea5529", orange: "#ea5529",
}), }),
}, },
plugins: [], plugins: [],
}; };
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论