@nocobase/app 2.1.0-alpha.23 → 2.1.0-alpha.25

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,
@@ -182,7 +182,7 @@ export default defineConfig(({ command }) => {
182
182
  media: '[name]-[contenthash:8][ext][query]',
183
183
  },
184
184
  assetPrefix: v2PublicPath,
185
- cleanDistPath: true,
185
+ cleanDistPath: isBuild,
186
186
  sourceMap: {
187
187
  js: isBuild ? false : 'eval-cheap-module-source-map',
188
188
  css: false,