Skip to content
This repository was archived by the owner on Apr 6, 2023. It is now read-only.
/frameworkPublic archive
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions packages/schema/src/config/_app.ts
Original file line numberDiff line numberDiff line change
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