chore: update app name

This commit is contained in:
vince
2024-07-14 23:10:48 +08:00
parent 3eb7a8bc6f
commit a5edb67b12
19 changed files with 53 additions and 28 deletions

View File

@@ -7,7 +7,7 @@ const isDevelopment = process.env.NODE_ENV === 'development';
const getDefaultPwaOptions = (name: string): Partial<PwaPluginOptions> => ({
manifest: {
description:
'Vben Admin Pro is a modern admin dashboard template based on Vue 3. ',
'Vue Vben Admin is a modern admin dashboard template based on Vue 3. ',
icons: [
{
sizes: '192x192',

View File

@@ -30,7 +30,7 @@ async function viteLicensePlugin(
handler: (_options: NormalizedOutputOptions, bundle: OutputBundle) => {
const date = dateUtil().format('YYYY-MM-DD ');
const copyrightText = `/*!
* Vben Admin Pro
* Vue Vben Admin
* Version: ${version}
* Author: vben
* Copyright (C) 2024 Vben

View File

@@ -65,7 +65,7 @@ async function loadAndConvertEnv(
.split(',')
.filter((item) => ['brotli', 'gzip'].includes(item));
return {
appTitle: envConfig?.VITE_GLOB_APP_TITLE ?? 'Vben Admin Pro',
appTitle: envConfig?.VITE_GLOB_APP_TITLE ?? 'Vben Admin',
compress: !!compress,
compressTypes: compressTypes as ('brotli' | 'gzip')[],
port: Number(envConfig.VITE_PORT) || 5173,