Compare commits
16 Commits
a91bcd897e
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 54f1b5745b | |||
| 5e89d228d1 | |||
| c2d355e313 | |||
| 2136030cd6 | |||
| 00e680d2b4 | |||
| 9b8bf6e2cd | |||
| b5b642cf17 | |||
| ea8a31aa3d | |||
| ef25f40095 | |||
| 6a2a7b6ad0 | |||
| e43f2836a9 | |||
| 1fde823488 | |||
| c4b6e1f860 | |||
| 99886b7f79 | |||
| 28842ced85 | |||
| 476a4356ec |
+1
-1
@@ -12,7 +12,7 @@ COPY . /build
|
|||||||
RUN npm run postinstall && npm run generate && npm run lint
|
RUN npm run postinstall && npm run generate && npm run lint
|
||||||
#RUN yarn start:ci & yarn wait && yarn test:cypress
|
#RUN yarn start:ci & yarn wait && yarn test:cypress
|
||||||
|
|
||||||
FROM amd64/nginx:1.29.7@sha256:03a679e99632afbbd7d56284e5b4125f223c94263f2a7b71ad85f4826401a981
|
FROM amd64/nginx:1.29.8@sha256:b4c899988815cfc0fdff1151e28d8e97eff1291e153a912b787bfcd5e4b0a819
|
||||||
MAINTAINER Joakim Olsson <joakim@unbound.se>
|
MAINTAINER Joakim Olsson <joakim@unbound.se>
|
||||||
|
|
||||||
COPY --from=builder /build/.output/public/ /usr/share/nginx/html/
|
COPY --from=builder /build/.output/public/ /usr/share/nginx/html/
|
||||||
|
|||||||
@@ -66,6 +66,22 @@ export default defineNuxtConfig({
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
optimizeDeps: {
|
||||||
|
include: [
|
||||||
|
'@vue/devtools-core',
|
||||||
|
'@vue/devtools-kit',
|
||||||
|
'@auth0/auth0-vue',
|
||||||
|
'@apollo/client/core',
|
||||||
|
'@apollo/client/link/context',
|
||||||
|
'@apollo/client/link/ws',
|
||||||
|
'@apollo/client/utilities',
|
||||||
|
'@opentelemetry/api',
|
||||||
|
'@vue/apollo-composable',
|
||||||
|
'@grafana/faro-web-sdk',
|
||||||
|
'@grafana/faro-web-tracing',
|
||||||
|
'@opentelemetry/instrumentation-fetch',
|
||||||
|
],
|
||||||
|
},
|
||||||
resolve: {
|
resolve: {
|
||||||
dedupe: ['pinia'],
|
dedupe: ['pinia'],
|
||||||
},
|
},
|
||||||
|
|||||||
Generated
+1832
-458
File diff suppressed because it is too large
Load Diff
+13
-13
@@ -18,33 +18,33 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@commitlint/cli": "20.5.0",
|
"@commitlint/cli": "20.5.0",
|
||||||
"@commitlint/config-conventional": "20.5.0",
|
"@commitlint/config-conventional": "20.5.0",
|
||||||
"@graphql-codegen/cli": "6.2.1",
|
"@graphql-codegen/cli": "6.3.0",
|
||||||
"@graphql-codegen/fragment-matcher": "6.0.0",
|
"@graphql-codegen/fragment-matcher": "6.0.1",
|
||||||
"@graphql-codegen/typescript": "5.0.9",
|
"@graphql-codegen/typescript": "5.0.10",
|
||||||
"@graphql-codegen/typescript-operations": "5.0.9",
|
"@graphql-codegen/typescript-operations": "5.1.0",
|
||||||
"@graphql-codegen/typescript-vue-apollo": "5.0.0",
|
"@graphql-codegen/typescript-vue-apollo": "5.0.0",
|
||||||
"@nuxt/devtools": "3.2.4",
|
"@nuxt/devtools": "3.2.4",
|
||||||
"@nuxt/eslint": "1.15.2",
|
"@nuxt/eslint": "1.15.2",
|
||||||
"@nuxtjs/i18n": "10.2.4",
|
"@nuxtjs/i18n": "10.2.4",
|
||||||
"@stylistic/eslint-plugin": "5.10.0",
|
"@stylistic/eslint-plugin": "5.10.0",
|
||||||
"@vue/test-utils": "2.4.6",
|
"@vue/test-utils": "2.4.6",
|
||||||
"esbuild": "0.27.4",
|
"esbuild": "0.28.0",
|
||||||
"eslint": "10.1.0",
|
"eslint": "10.2.0",
|
||||||
"eslint-plugin-simple-import-sort": "12.1.1",
|
"eslint-plugin-simple-import-sort": "13.0.0",
|
||||||
"eslint-plugin-vue": "10.8.0",
|
"eslint-plugin-vue": "10.8.0",
|
||||||
"nuxt": "4.4.2",
|
"nuxt": "4.4.2",
|
||||||
"postcss-html": "1.8.1",
|
"postcss-html": "1.8.1",
|
||||||
"sass": "1.98.0",
|
"sass": "1.99.0",
|
||||||
"stylelint": "17.6.0",
|
"stylelint": "17.7.0",
|
||||||
"stylelint-config-recommended-vue": "1.6.1",
|
"stylelint-config-recommended-vue": "1.6.1",
|
||||||
"stylelint-config-standard": "40.0.0",
|
"stylelint-config-standard": "40.0.0",
|
||||||
"typescript": "5.9.3",
|
"typescript": "6.0.2",
|
||||||
"typescript-eslint": "8.57.2",
|
"typescript-eslint": "8.58.1",
|
||||||
"vite-plugin-vuetify": "2.1.3",
|
"vite-plugin-vuetify": "2.1.3",
|
||||||
"vue": "3.5.31",
|
"vue": "3.5.32",
|
||||||
"vue-eslint-parser": "10.4.0",
|
"vue-eslint-parser": "10.4.0",
|
||||||
"vue-router": "4.6.4",
|
"vue-router": "4.6.4",
|
||||||
"vuetify": "3.12.4"
|
"vuetify": "4.0.5"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@apollo/client": "3.14.1",
|
"@apollo/client": "3.14.1",
|
||||||
|
|||||||
Reference in New Issue
Block a user