ffc/vue.config.js
Rene Fischer f2f3c2bbfd
fix styling and title
Co-authored-by: Niko Lockenvitz <nl@nikolockenvitz.de>
2020-06-26 18:10:57 +02:00

20 lines
386 B
JavaScript

module.exports = {
publicPath: "/ffc/",
transpileDependencies: ["vuetify"],
pwa: {
themeColor: "#363636",
msTileColor: "#3F51B5",
manifestOptions: {
name: "Fancy Flashcard",
short_name: "FFC",
},
},
chainWebpack: config => {
config
.plugin('html')
.tap(args => {
args[0].title = 'Fancy Flashcard'
return args
})
},
};