-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquasar.conf.js
151 lines (120 loc) · 4.3 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
/*
* 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/
*/
const fs = require('fs');
const path = require('path');
const CopyWebpackPlugin = require('copy-webpack-plugin');
// Configuration for your app
// https://quasar.dev/quasar-cli/quasar-conf-js
module.exports = function (/* ctx */) {
const dir = path.join(__dirname, 'public');
const patterns = [
...[
{ from: 'public/favicon', to: 'favicon' },
{ from: 'public/images', to: 'images' },
],
...fs.readdirSync(dir).filter(f => {
return !fs.statSync(path.join(dir, f)).isDirectory()
&& path.extname(f) !== ''
&& path.extname(f) !== '.php'
&& path.basename(f) !== '.htaccess'
;
}).map(f => ({ from: 'public/' + f, to: f })),
];
const boot = fs.readdirSync(path.join(__dirname, 'src/boot'))
.map(f => path.basename(f).replace(path.extname(f), ''));
return {
supportTS: false, // https://quasar.dev/quasar-cli/supporting-ts
preFetch: true, // https://quasar.dev/quasar-cli/prefetch-feature
boot, // https://quasar.dev/quasar-cli/boot-files
css: [
// https://quasar.dev/quasar-cli/quasar-conf-js#Property%3A-css
'app.scss',
],
extras: [
// https://github.com/quasarframework/quasar/tree/dev/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
],
build: {
// Full list of options: https://quasar.dev/quasar-cli/quasar-conf-js#Property%3A-build
vueRouterMode: 'history',
// transpile: false,
// 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: [],
// preloadChunks : true,
// showProgress : false,
// analyze : true,
gzip : true,
rtl : false, // https://quasar.dev/options/rtl-support
ignorePublicFolder: true,
htmlFilename : 'index.html',
// Options below are automatically set depending on the env, set them if you want to override
extractCSS: true,
extendWebpack(cfg, { isServer, isClient }) {
// https://quasar.dev/quasar-cli/handling-webpack
cfg.resolve.alias = {
...cfg.resolve.alias, // This adds the existing alias
'@': path.resolve(__dirname, './src'),
};
cfg.plugins.push(
new CopyWebpackPlugin({
patterns,
}),
);
},
},
devServer: {
// Full list of options: https://quasar.dev/quasar-cli/quasar-conf-js#Property%3A-devServer
https: false,
port : 3000,
open : 'chrome',
proxy: {
'/api': {
target : process.env.VUE_APP_DEV_SERVER_PROXY ?? 'http://wofh-tools.project:8080',
changeOrigin: true,
},
},
},
framework: {
// https://quasar.dev/quasar-cli/quasar-conf-js#Property%3A-framework
// iconSet: 'material-icons', // Quasar icon set
lang: 'ru', // Quasar language pack
// Possible values for "importStrategy":
// * 'auto' - (DEFAULT) Auto-import needed Quasar components & directives
// * 'all' - Manually specify what to import
importStrategy: 'auto',
// For special cases outside of where "auto" importStrategy 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: [
'Loading',
],
config: {
loading: {},
},
},
animations: [
// animations: 'all', // --- includes all animations
// https://quasar.dev/options/animations
],
ssr: {
// https://quasar.dev/quasar-cli/developing-ssr/configuring-ssr
pwa: false,
},
};
};