mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-11-21 16:55:25 +03:00
Fix missing name & short_name inside webmanifest
Need to pass env prefix to loadEnv too
This commit is contained in:
parent
3989b218d0
commit
2bc1b8387e
1 changed files with 3 additions and 2 deletions
|
@ -9,11 +9,12 @@ import htmlPlugin from 'vite-plugin-html-config';
|
|||
import { VitePWA } from 'vite-plugin-pwa';
|
||||
import removeConsole from 'vite-plugin-remove-console';
|
||||
|
||||
const allowedEnvPrefixes = ['VITE_', 'PHANPY_'];
|
||||
const { NODE_ENV } = process.env;
|
||||
const {
|
||||
PHANPY_CLIENT_NAME: CLIENT_NAME,
|
||||
PHANPY_APP_ERROR_LOGGING: ERROR_LOGGING,
|
||||
} = loadEnv('production', process.cwd());
|
||||
} = loadEnv('production', process.cwd(), allowedEnvPrefixes);
|
||||
|
||||
const now = new Date();
|
||||
let commitHash;
|
||||
|
@ -35,7 +36,7 @@ const rollbarCode = fs.readFileSync(
|
|||
// https://vitejs.dev/config/
|
||||
export default defineConfig({
|
||||
base: './',
|
||||
envPrefix: ['VITE_', 'PHANPY_'],
|
||||
envPrefix: allowedEnvPrefixes,
|
||||
mode: NODE_ENV,
|
||||
define: {
|
||||
__BUILD_TIME__: JSON.stringify(now),
|
||||
|
|
Loading…
Reference in a new issue