petra-tool / frontend / vue.config.js
vue.config.js
Raw
module.exports = {
  "transpileDependencies": [
    "vuetify"
  ],
  pwa: {
    name: 'Petra - From Idea to Proof of Concept',
    themeColor: '#01141c',
    msTileColor: '#2b5797',
    appleMobileWebAppCapable: 'yes',
    appleMobileWebAppStatusBarStyle: '#FEF2EB',

    iconPaths: {
      favicon32: 'img/icons/favicon-32x32.png',
      favicon16: 'img/icons/favicon-16x16.png',
      appleTouchIcon: 'img/icons/apple-touch-icon.png',
      maskIcon: 'img/icons/safari-pinned-tab.svg',
      msTileImage: 'img/icons/mstile-150x150.png'
    },

    manifestOptions: {
      short_name: 'Petra',
      background_color: '#01141c',
      start_url: '/dashboard'
    }
  },
  configureWebpack: {
    devtool: 'source-map'
  }
}