Release catalyst

This commit is contained in:
Jonas Plum
2021-12-13 00:39:15 +01:00
commit 15cf0ebd49
339 changed files with 111677 additions and 0 deletions

29
ui/vue.config.js Normal file
View File

@@ -0,0 +1,29 @@
module.exports = {
transpileDependencies: ["vuetify", "@koumoul/vjsf"],
pwa: {
name: "Catalyst",
themeColor: "#FFC107",
msTileColor: "#000000",
appleMobileWebAppCapable: "yes",
appleMobileWebAppStatusBarStyle: "black",
// configure the workbox plugin
// workboxPluginMode: "InjectManifest",
// workboxOptions: {
// // swSrc is required in InjectManifest mode.
// swSrc: "dev/sw.js",
// // ...other Workbox options...
// },
iconPaths: {
favicon32: "img/icons/favicon-32x32.png",
favicon16: "img/icons/favicon-16x16.png",
appleTouchIcon: "img/icons/apple-touch-icon-152x152.png",
maskIcon: "img/icons/safari-pinned-tab.svg",
msTileImage: "img/icons/msapplication-icon-144x144.png",
},
manifestCrossorigin: 'use-credentials'
},
devServer: {
disableHostCheck: true
}
};