|
| 1 | +// Configuration for your app |
| 2 | +// https://quasar.dev/quasar-cli/quasar-conf-js |
| 3 | + |
| 4 | +module.exports = function(ctx) { |
| 5 | + return { |
| 6 | + // https://quasar.dev/quasar-cli/cli-documentation/boot-files |
| 7 | + boot: ["axios"], |
| 8 | + |
| 9 | + // https://quasar.dev/quasar-cli/quasar-conf-js#Property%3A-css |
| 10 | + css: ["app.scss"], |
| 11 | + |
| 12 | + // https://github.com/quasarframework/quasar/tree/dev/extras |
| 13 | + extras: ["roboto-font", "material-icons"], |
| 14 | + |
| 15 | + // https://quasar.dev/quasar-cli/quasar-conf-js#Property%3A-framework |
| 16 | + framework: { |
| 17 | + iconSet: "material-icons", |
| 18 | + lang: "en-us", |
| 19 | + all: "auto", |
| 20 | + |
| 21 | + components: [], |
| 22 | + directives: [], |
| 23 | + |
| 24 | + // Quasar plugins |
| 25 | + plugins: ["Notify", "Dialog"] |
| 26 | + }, |
| 27 | + |
| 28 | + supportIE: false, |
| 29 | + |
| 30 | + // Full list of options: https://quasar.dev/quasar-cli/quasar-conf-js#Property%3A-build |
| 31 | + build: { |
| 32 | + scopeHoisting: true, |
| 33 | + vueRouterMode: "hash", |
| 34 | + showProgress: true, |
| 35 | + gzip: false, |
| 36 | + analyze: false, |
| 37 | + |
| 38 | + // https://quasar.dev/quasar-cli/cli-documentation/handling-webpack |
| 39 | + extendWebpack(cfg) { |
| 40 | + cfg.module.rules.push({ |
| 41 | + enforce: "pre", |
| 42 | + test: /\.(js|vue)$/, |
| 43 | + loader: "eslint-loader", |
| 44 | + exclude: /node_modules/, |
| 45 | + options: { |
| 46 | + formatter: require("eslint").CLIEngine.getFormatter("stylish") |
| 47 | + } |
| 48 | + }); |
| 49 | + } |
| 50 | + }, |
| 51 | + |
| 52 | + // Full list of options: https://quasar.dev/quasar-cli/quasar-conf-js#Property%3A-devServer |
| 53 | + devServer: { |
| 54 | + https: false, |
| 55 | + port: 8080, |
| 56 | + open: false, |
| 57 | + proxy: { |
| 58 | + "/api": "http://localhost:9090/" |
| 59 | + }, |
| 60 | + headers: { |
| 61 | + "Access-Control-Allow-Origin": "*" |
| 62 | + } |
| 63 | + }, |
| 64 | + |
| 65 | + // animations: 'all', // --- includes all animations |
| 66 | + // https://quasar.dev/options/animations |
| 67 | + animations: [], |
| 68 | + |
| 69 | + // https://quasar.dev/quasar-cli/developing-ssr/configuring-ssr |
| 70 | + ssr: { |
| 71 | + pwa: false |
| 72 | + }, |
| 73 | + |
| 74 | + // https://quasar.dev/quasar-cli/developing-pwa/configuring-pwa |
| 75 | + pwa: { |
| 76 | + workboxPluginMode: "GenerateSW", // 'GenerateSW' or 'InjectManifest' |
| 77 | + workboxOptions: {}, // only for GenerateSW |
| 78 | + manifest: { |
| 79 | + name: "MiniMappingViewer", |
| 80 | + short_name: "MiniMappingViewer", |
| 81 | + description: "MiniMappingViewer", |
| 82 | + display: "standalone", |
| 83 | + orientation: "portrait", |
| 84 | + background_color: "#ffffff", |
| 85 | + theme_color: "#027be3", |
| 86 | + icons: [ |
| 87 | + { |
| 88 | + src: "statics/icons/icon-128x128.png", |
| 89 | + sizes: "128x128", |
| 90 | + type: "image/png" |
| 91 | + }, |
| 92 | + { |
| 93 | + src: "statics/icons/icon-192x192.png", |
| 94 | + sizes: "192x192", |
| 95 | + type: "image/png" |
| 96 | + }, |
| 97 | + { |
| 98 | + src: "statics/icons/icon-256x256.png", |
| 99 | + sizes: "256x256", |
| 100 | + type: "image/png" |
| 101 | + }, |
| 102 | + { |
| 103 | + src: "statics/icons/icon-384x384.png", |
| 104 | + sizes: "384x384", |
| 105 | + type: "image/png" |
| 106 | + }, |
| 107 | + { |
| 108 | + src: "statics/icons/icon-512x512.png", |
| 109 | + sizes: "512x512", |
| 110 | + type: "image/png" |
| 111 | + } |
| 112 | + ] |
| 113 | + } |
| 114 | + }, |
| 115 | + |
| 116 | + // Full list of options: https://quasar.dev/quasar-cli/developing-cordova-apps/configuring-cordova |
| 117 | + cordova: { |
| 118 | + id: "me.minidigger.MiniMappingViewer" |
| 119 | + }, |
| 120 | + |
| 121 | + // Full list of options: https://quasar.dev/quasar-cli/developing-capacitor-apps/configuring-capacitor |
| 122 | + capacitor: { |
| 123 | + hideSplashscreen: true |
| 124 | + }, |
| 125 | + |
| 126 | + // Full list of options: https://quasar.dev/quasar-cli/developing-electron-apps/configuring-electron |
| 127 | + electron: { |
| 128 | + bundler: "packager", // 'packager' or 'builder' |
| 129 | + |
| 130 | + packager: { |
| 131 | + // https://github.com/electron-userland/electron-packager/blob/master/docs/api.md#options |
| 132 | + // OS X / Mac App Store |
| 133 | + // appBundleId: '', |
| 134 | + // appCategoryType: '', |
| 135 | + // osxSign: '', |
| 136 | + // protocol: 'myapp://path', |
| 137 | + // Windows only |
| 138 | + // win32metadata: { ... } |
| 139 | + }, |
| 140 | + |
| 141 | + builder: { |
| 142 | + // https://www.electron.build/configuration/configuration |
| 143 | + |
| 144 | + appId: "minimappingviewer" |
| 145 | + }, |
| 146 | + |
| 147 | + // keep in sync with /api-electron/main-process/electron-main |
| 148 | + // > BrowserWindow > webPreferences > nodeIntegration |
| 149 | + // More info: https://quasar.dev/quasar-cli/developing-electron-apps/node-integration |
| 150 | + nodeIntegration: true, |
| 151 | + |
| 152 | + extendWebpack(cfg) { |
| 153 | + // do something with Electron main process Webpack cfg |
| 154 | + // chainWebpack also available besides this extendWebpack |
| 155 | + } |
| 156 | + } |
| 157 | + }; |
| 158 | +}; |
0 commit comments