Skip to content

Commit

Permalink
update quasar.conf.js
Browse files Browse the repository at this point in the history
  • Loading branch information
cirolosapio committed Jun 2, 2020
1 parent 14d6a99 commit 92b30ff
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions demo/quasar.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ module.exports = configure(function (ctx) {
// 'fontawesome-v5',
// 'eva-icons',
// 'themify',
// 'mdi-v4',
// 'mdi-v5',
// 'line-awesome',
// 'roboto-font-latin-ext', // this or either 'roboto-font', NEVER both!
Expand Down Expand Up @@ -70,14 +71,15 @@ module.exports = configure(function (ctx) {
build: {
vueRouterMode: 'history', // available values: 'hash', 'history'

modern: true,
publicPath: 'app-extension-q-filter-configurator',
// rtl: false, // https://quasar.dev/options/rtl-support
showProgress: ctx.dev,
gzip: true,
analyze: false,

// Options below are automatically set depending on the env, set them if you want to override
// preloadChunks: true,
preloadChunks: true,
// extractCSS: false,

// https://quasar.dev/quasar-cli/cli-documentation/handling-webpack
Expand All @@ -86,10 +88,7 @@ module.exports = configure(function (ctx) {
enforce: 'pre',
test: /\.(js|vue)$/,
loader: 'eslint-loader',
exclude: /node_modules/,
options: {
formatter: require('eslint').CLIEngine.getFormatter('stylish')
}
exclude: /node_modules/
})
}
},
Expand All @@ -98,7 +97,7 @@ module.exports = configure(function (ctx) {
devServer: {
// https: true,
// port: 8080,
open: true, // opens browser window automatically
open: true // opens browser window automatically
// watchOptions: {
// ignored: [
// 'node_modules',
Expand Down Expand Up @@ -199,7 +198,7 @@ module.exports = configure(function (ctx) {
// More info: https://quasar.dev/quasar-cli/developing-electron-apps/node-integration
nodeIntegration: true,

extendWebpack (cfg) {
extendWebpack (/* cfg */) {
// do something with Electron main process Webpack cfg
// chainWebpack also available besides this extendWebpack
}
Expand Down

0 comments on commit 92b30ff

Please sign in to comment.