Skip to content
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.

fix(schema): evaluate env variables when resolving values #8079

Merged
merged 1 commit into from Oct 10, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 6 additions & 2 deletions packages/schema/src/config/_app.ts
Expand Up @@ -51,10 +51,14 @@ export default defineUntypedSchema({
* NUXT_APP_BASE_URL=/prefix/ node .output/server/index.mjs
* ```
*/
baseURL: process.env.NUXT_APP_BASE_URL || '/',
baseURL: {
$resolve: async (val) => val || process.env.NUXT_APP_BASE_URL || '/',
},

/** The folder name for the built site assets, relative to `baseURL` (or `cdnURL` if set). This is set at build time and should not be customized at runtime. */
buildAssetsDir: process.env.NUXT_APP_BUILD_ASSETS_DIR || '/_nuxt/',
buildAssetsDir: {
$resolve: async (val) => val || process.env.NUXT_APP_BUILD_ASSETS_DIR || '/_nuxt/',
},

/**
* The folder name for the built site assets, relative to `baseURL` (or `cdnURL` if set).
Expand Down