24 lines
574 B
JavaScript
24 lines
574 B
JavaScript
const { configure } = require('quasar/wrappers')
|
|
|
|
module.exports = configure(function () {
|
|
return {
|
|
boot: ['axios'],
|
|
css: ['app.scss'],
|
|
extras: ['roboto-font', 'material-icons'],
|
|
build: {
|
|
target: { browser: ['es2019', 'edge88', 'firefox78', 'chrome87', 'safari13.1'] },
|
|
vueRouterMode: 'history',
|
|
env: {
|
|
API_BASE_URL: process.env.API_BASE_URL || 'http://localhost:8080/api',
|
|
},
|
|
},
|
|
devServer: {
|
|
port: 9000,
|
|
open: false,
|
|
},
|
|
framework: {
|
|
plugins: ['Notify', 'Dialog', 'Loading'],
|
|
},
|
|
}
|
|
})
|