forked from fiatjaf/branle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquasar.conf.js
133 lines (111 loc) · 4.18 KB
/
quasar.conf.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/*
* This file runs in a Node context (it's NOT transpiled by Babel), so use only
* the ES6 features that are supported by your Node version. https://node.green/
*/
// Configuration for your app
// https://quasar.dev/quasar-cli/quasar-conf-js
/* eslint-env node */
const webpack = require('webpack')
const ESLintPlugin = require('eslint-webpack-plugin')
const {configure} = require('quasar/wrappers')
const customize = require('./customize.json')
module.exports = configure(function (ctx) {
return {
// https://quasar.dev/quasar-cli/supporting-ts
supportTS: false,
// https://quasar.dev/quasar-cli/prefetch-feature
// preFetch: true,
// app boot file (/src/boot)
// --> boot files are part of "main.js"
// https://quasar.dev/quasar-cli/boot-files
boot: ['global-components'],
// https://quasar.dev/quasar-cli/quasar-conf-js#Property%3A-css
css: [
'add-tailwind.css',
'../../node_modules/highlight.js/styles/base16/solarized-light.css',
'../../node_modules/tributejs/tribute.css'
],
// https://github.com/quasarframework/quasar/tree/dev/extras
extras: [
// 'ionicons-v4',
// 'mdi-v5',
// 'fontawesome-v5',
// 'eva-icons',
// 'themify',
// 'line-awesome',
// 'roboto-font-latin-ext', // this or either 'roboto-font', NEVER both!
'roboto-font', // optional, you are not bound to it
'material-icons' // optional, you are not bound to it
],
// Full list of options: https://quasar.dev/quasar-cli/quasar-conf-js#Property%3A-build
build: {
vueRouterMode: 'history', // available values: 'hash', 'history'
// transpile: false,
publicPath: '/',
// Add dependencies for transpiling with Babel (Array of string/regex)
// (from node_modules, which are by default not transpiled).
// Applies only if "transpile" is set to true.
// transpileDependencies: [],
// rtl: true, // https://quasar.dev/options/rtl-support
// preloadChunks: true,
// showProgress: false,
// gzip: true,
// analyze: true,
// Options below are automatically set depending on the env, set them if you want to override
// extractCSS: false,
// https://quasar.dev/quasar-cli/handling-webpack
// "chain" is a webpack-chain object https://github.com/neutrinojs/webpack-chain
chainWebpack(chain) {
chain
.plugin('eslint-webpack-plugin')
.use(ESLintPlugin, [{extensions: ['js', 'vue']}])
},
// blergh
extendWebpack(cfg) {
cfg.plugins.push(
new webpack.ProvidePlugin({Buffer: ['buffer', 'Buffer']})
)
cfg.resolve.alias = cfg.resolve.alias || {}
cfg.resolve.alias.stream = 'readable-stream'
cfg.resolve.fallback = cfg.resolve.fallback || {}
cfg.resolve.fallback.buffer = require.resolve('buffer/')
cfg.resolve.fallback.stream = require.resolve('readable-stream')
cfg.resolve.fallback.crypto = false
cfg.resolve.fallback.path = false
cfg.resolve.fallback.fs = false
cfg.experiments = cfg.experiments || {}
cfg.module = cfg.module || {rules: []}
cfg.module.rules.push({test: /\.wasm$/, type: 'asset/inline'})
}
},
// Full list of options: https://quasar.dev/quasar-cli/quasar-conf-js#Property%3A-devServer
devServer: {
server: {
type: 'http'
},
port: 8080,
open: true // opens browser window automatically
},
// https://quasar.dev/quasar-cli/quasar-conf-js#Property%3A-framework
framework: {
config: {
dark: customize.useDarkTheme,
brand: customize.colors
},
// iconSet: 'material-icons', // Quasar icon set
// lang: 'en-US', // Quasar language pack
// For special cases outside of where the auto-import strategy can have an impact
// (like functional components as one of the examples),
// you can manually specify Quasar components/directives to be available everywhere:
//
// components: [],
// directives: [],
// Quasar plugins
plugins: ['Notify', 'Dialog']
},
htmlVariables: {
name: customize.name,
icon: customize.icon
}
}
})