@geode/opengeodeweb-front 10.12.0-rc.5 → 10.12.0-rc.7

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/nuxt.config.js CHANGED
@@ -5,6 +5,7 @@ import path from "node:path";
5
5
  import package_json from "./package.json";
6
6
 
7
7
  const __dirname = import.meta.dirname;
8
+ const oneMinute = 60_000;
8
9
 
9
10
  export default defineNuxtConfig({
10
11
  runtimeConfig: {
@@ -37,6 +38,12 @@ export default defineNuxtConfig({
37
38
  transpile: ["vuetify"],
38
39
  },
39
40
 
41
+ nitro: {
42
+ routeRules: {
43
+ "/api/**": { timeout: oneMinute },
44
+ },
45
+ },
46
+
40
47
  vuetify: {
41
48
  vuetifyOptions: {
42
49
  defaults: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geode/opengeodeweb-front",
3
- "version": "10.12.0-rc.5",
3
+ "version": "10.12.0-rc.7",
4
4
  "description": "OpenSource Vue/Nuxt/Pinia/Vuetify framework for web applications",
5
5
  "homepage": "https://github.com/Geode-solutions/OpenGeodeWeb-Front",
6
6
  "bugs": {
@@ -56,11 +56,15 @@ function requestConfig(parent, routerImage, backImage, viewerImage) {
56
56
  service: {
57
57
  ingress: "INGRESS_TRAFFIC_ALL",
58
58
  invokerIamDisabled: true,
59
- scaling: {
60
- scalingMode: "MANUAL",
61
- manualInstanceCount: 1,
62
- },
59
+ // scaling: {
60
+ // scalingMode: "MANUAL",
61
+ // manualInstanceCount: 1,
62
+ // },
63
63
  template: {
64
+ scaling: {
65
+ minInstanceCount: 0,
66
+ maxInstanceCount: 1,
67
+ },
64
68
  volumes: [
65
69
  {
66
70
  name: "data",