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

build: build更新.

上级 bc543f9e
# 默认标题
VITE_APP_TITLE=TEST_VUE3_VITE
\ No newline at end of file
VITE_APP_TITLE=诚联信-消息中台
# 开发环境
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
# 接口请求地址
VITE_APP_BASE_URL=https://dapi.clxkj.cn:8088/
# 静态资源地址
VITE_APP_STATIC_URL=http://clx-dev.oss-cn-beijing.aliyuncs.com
# 构建资源公共路径
VITE_PUBLIC_PATH=/
\ No newline at end of file
# 开发环境
NODE_ENV=dev
# 接口请求地址
VITE_APP_BASE_URL=https://dapi.clxkj.cn:8088/
# 静态资源地址
VITE_APP_STATIC_URL=https://clx-dev.oss-cn-beijing.aliyuncs.com
# 构建资源公共路径
VITE_PUBLIC_PATH=
\ No newline at end of file
......@@ -5,7 +5,7 @@ NODE_ENV=pre
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=/
\ No newline at end of file
VITE_PUBLIC_PATH=
\ No newline at end of file
# 生产环境
NODE_ENV=production
# 接口请求地址
VITE_APP_BASE_URL=https://api1.91msl.com:8088/
# 静态资源地址
VITE_APP_STATIC_URL=http://clx-prod.oss-cn-beijing.aliyuncs.com
# 构建资源公共路径
# 生产环境
NODE_ENV=prod
# 接口请求地址
VITE_APP_BASE_URL=https://api1.91msl.com:8088/
# 静态资源地址
VITE_APP_STATIC_URL=https://clx-prod.oss-cn-beijing.aliyuncs.com
# 构建资源公共路径
VITE_PUBLIC_PATH=/
\ No newline at end of file
......@@ -4,8 +4,8 @@ NODE_ENV=test
# 接口请求地址
VITE_APP_BASE_URL=https://api.clxkj.cn:8088/
# 静态资源地址
VITE_APP_STATIC_URL=http://clx-dev.oss-cn-beijing.aliyuncs.com
# 静态资源地址 http版http://clx-dev.oss-cn-beijing.aliyuncs.com
VITE_APP_STATIC_URL=https://clx-dev.oss-cn-beijing.aliyuncs.com
# 构建资源公共路径
VITE_PUBLIC_PATH=/
\ No newline at end of file
......@@ -8,7 +8,6 @@ export {}
declare module '@vue/runtime-core' {
export interface GlobalComponents {
ElAside: typeof import('element-plus/es')['ElAside']
ElButton: typeof import('element-plus/es')['ElButton']
ElContainer: typeof import('element-plus/es')['ElContainer']
ElHeader: typeof import('element-plus/es')['ElHeader']
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 @@
"version": "0.0.0",
"scripts": {
"dev": "vite",
"test": "vite --mode test",
"pre": "vite --mode pre",
"build": "run-p type-check build-only",
"preview": "vite preview --port 4173",
"test:unit": "vitest --environment jsdom",
"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'",
"build-only": "vite build",
"build-test": "run-p type-check && vite build --mode test",
"build-pre": "run-p type-check && vite build --mode pre",
"build-production": "run-p type-check && vite build --mode production",
"build-development": "run-p type-check && vite build --mode development",
"buildTest": "run-p type-check && vite build --mode test",
"buildPre": "run-p type-check && vite build --mode pre",
"buildProd": "run-p type-check && vite build --mode prod",
"buildDev": "run-p type-check && vite build --mode dev",
"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"
},
......
/** @type {import('tailwindcss').Config} */
// eslint-disable-next-line no-undef
module.exports = {
mode: "jit",
content: ["index.html", "./src/**/*.{js,jsx,ts,tsx,vue,html}"],
darkMode: "media", // or 'media' or 'class'
theme: {
extend: {},
backgroundColor: (theme) => ({
...theme("colors"),
orange: "#ea5529",
}),
textColor: (theme) => ({
...theme("colors"),
orange: "#ea5529",
}),
},
plugins: [],
};
/** @type {import('tailwindcss').Config} */
// eslint-disable-next-line no-undef
module.exports = {
mode: "jit",
content: ["index.html", "./src/**/*.{js,jsx,ts,tsx,vue,html}"],
darkMode: "media", // or 'media' or 'class'
theme: {
extend: {},
backgroundColor: (theme) => ({
...theme("colors"),
orange: "#ea5529",
}),
textColor: (theme) => ({
...theme("colors"),
orange: "#ea5529",
}),
},
plugins: [],
};
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论