@gxp-dev/tools 2.0.59 → 2.0.60

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gxp-dev/tools",
3
- "version": "2.0.59",
3
+ "version": "2.0.60",
4
4
  "description": "Dev tools to create platform plugins",
5
5
  "type": "commonjs",
6
6
  "publishConfig": {
@@ -259,6 +259,7 @@ export default defineConfig(({ mode }) => {
259
259
  server: {
260
260
  port: parseInt(env.NODE_PORT) || 3060,
261
261
  strictPort: true,
262
+ fallback: 'index.html',
262
263
  https: getHttpsConfig(env),
263
264
  allowedHosts: env.ALLOWED_HOSTS
264
265
  ? env.ALLOWED_HOSTS.split(",").map((h) => h.trim()).filter(Boolean)