mirror of
https://github.com/SecurityBrewery/catalyst.git
synced 2025-12-06 15:22:47 +01:00
31 lines
899 B
JavaScript
31 lines
899 B
JavaScript
module.exports = {
|
|
publicPath: "/ui/",
|
|
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
|
|
}
|
|
};
|