Created
February 4, 2019 22:49
-
-
Save codenamezjames/3f818a62ab7109698e264d92d7854dc3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Configuration for your app | |
const path = require('path') | |
const envObj = require('./.env') | |
const env = Object.keys(envObj).reduce((last, current) => { | |
last[current] = JSON.stringify(envObj[current]) | |
return last | |
}, {}) | |
module.exports = function (ctx) { | |
return { | |
// app plugins (/src/plugins) | |
plugins: [ | |
'process' | |
], | |
css: [ | |
'app.styl' | |
], | |
extras: [ | |
'material-icons', | |
'fontawesome' | |
], | |
supportIE: false, | |
build: { | |
scopeHoisting: true, | |
vueRouterMode: 'history', | |
env: ctx.dev | |
? { ...env, API: JSON.stringify('/graphql') } | |
: { ...env, API: JSON.stringify('http://graph.local:3000/graphql') }, // Production env | |
// vueCompiler: true, | |
// gzip: true, | |
// analyze: true, | |
// extractCSS: false, | |
extendWebpack (cfg) { | |
cfg.resolve.extensions = [ '.mjs', ...cfg.resolve.extensions, '.gql', '.graphql' ] | |
cfg.resolve.alias = { | |
...cfg.resolve.alias, | |
'@': path.resolve(__dirname, './src') | |
} | |
cfg.module.rules.push({ | |
test: /\.(graphql|gql)$/, | |
exclude: /node_modules/, | |
loader: ['graphql-tag/loader'] | |
}) | |
cfg.module.rules.push({ | |
enforce: 'pre', | |
test: /\.(js|vue)$/, | |
loader: 'eslint-loader', | |
exclude: /(node_modules|quasar)/, | |
options: { | |
cache: true, | |
fix: true | |
} | |
}) | |
} | |
}, | |
devServer: { | |
open: false, | |
proxy: { | |
'/graphql': { | |
target: 'http://127.0.0.1:3000', | |
changeOrigin: true | |
} | |
}, | |
historyApiFallback: { | |
disableDotRule: true | |
} | |
}, | |
// framework: 'all' --- includes everything; for dev only! | |
framework: { | |
components: [ | |
'QLayout', | |
'QLayoutHeader', | |
'QLayoutDrawer', | |
'QPageContainer', | |
'QPage', | |
'QToolbar', | |
'QToolbarTitle', | |
'QBtn', | |
'QIcon', | |
'QList', | |
'QListHeader', | |
'QItem', | |
'QItemMain', | |
'QItemSide' | |
], | |
directives: [ | |
'Ripple' | |
], | |
// Quasar plugins | |
plugins: [ | |
'Notify' | |
] | |
// iconSet: ctx.theme.mat ? 'material-icons' : 'ionicons' | |
// i18n: 'de' // Quasar language | |
}, | |
// animations: 'all' --- includes all animations | |
animations: ['fadeIn', 'fadeOut'], | |
ssr: { | |
pwa: false | |
}, | |
pwa: { | |
// workboxPluginMode: 'InjectManifest', | |
// workboxOptions: {}, | |
manifest: { | |
// name: 'Quasar App', | |
// short_name: 'Quasar-PWA', | |
// description: 'Best PWA App in town!', | |
display: 'standalone', | |
orientation: 'portrait', | |
background_color: '#ffffff', | |
theme_color: '#027be3', | |
icons: [ | |
{ | |
'src': 'statics/icons/icon-128x128.png', | |
'sizes': '128x128', | |
'type': 'image/png' | |
}, | |
{ | |
'src': 'statics/icons/icon-192x192.png', | |
'sizes': '192x192', | |
'type': 'image/png' | |
}, | |
{ | |
'src': 'statics/icons/icon-256x256.png', | |
'sizes': '256x256', | |
'type': 'image/png' | |
}, | |
{ | |
'src': 'statics/icons/icon-384x384.png', | |
'sizes': '384x384', | |
'type': 'image/png' | |
}, | |
{ | |
'src': 'statics/icons/icon-512x512.png', | |
'sizes': '512x512', | |
'type': 'image/png' | |
} | |
] | |
} | |
}, | |
cordova: { | |
// id: 'org.cordova.quasar.app' | |
}, | |
electron: { | |
// bundler: 'builder', // or 'packager' | |
extendWebpack (cfg) { | |
// do something with Electron process Webpack cfg | |
}, | |
packager: { | |
// https://github.com/electron-userland/electron-packager/blob/master/docs/api.md#options | |
// OS X / Mac App Store | |
// appBundleId: '', | |
// appCategoryType: '', | |
// osxSign: '', | |
// protocol: 'myapp://path', | |
// Window only | |
// win32metadata: { ... } | |
}, | |
builder: { | |
// https://www.electron.build/configuration/configuration | |
// appId: 'quasar-app' | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment