@nocobase/app 2.1.0-beta.20 → 2.1.0-beta.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -174,7 +174,7 @@ export default defineConfig(({ command }) => {
174
174
  media: '[name]-[contenthash:8][ext][query]',
175
175
  },
176
176
  assetPrefix: isBuild ? 'auto' : appPublicPath,
177
- cleanDistPath: true,
177
+ cleanDistPath: isBuild,
178
178
  sourceMap: {
179
179
  js: isBuild ? false : 'eval-cheap-module-source-map',
180
180
  css: false,
@@ -179,7 +179,7 @@ export default defineConfig(({ command }) => {
179
179
  media: '[name]-[contenthash:8][ext][query]',
180
180
  },
181
181
  assetPrefix: v2PublicPath,
182
- cleanDistPath: true,
182
+ cleanDistPath: isBuild,
183
183
  sourceMap: {
184
184
  js: isBuild ? false : 'eval-cheap-module-source-map',
185
185
  css: false,