You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
421 B
JavaScript
20 lines
421 B
JavaScript
const configureAPI = require('../configure');
|
|
|
|
module.exports = {
|
|
chainWebpack: config => {
|
|
config.plugin('html').tap(args => {
|
|
args[0].title = "Action Dashboard"
|
|
return args;
|
|
})
|
|
},
|
|
devServer: {
|
|
before: configureAPI.before,
|
|
// Can't figure out how to connect up socket.io as part of webpack devServer
|
|
//after: configureAPI.after
|
|
},
|
|
|
|
transpileDependencies: [
|
|
'vuetify'
|
|
]
|
|
};
|