Groundwork

This commit is contained in:
2022-05-08 15:35:43 +03:00
parent 44f6c82a4e
commit 17aa8c75b1
52 changed files with 13631 additions and 29700 deletions

23
frontend/vue.config.js Normal file
View File

@@ -0,0 +1,23 @@
module.exports = {
publicPath: process.env.NODE_ENV === 'production'
? '/worktime/'
: '/',
pwa: {
appleMobileWebAppCapable: 'yes',
appleMobileWebAppStatusBarStyle: 'black-transculent',
themeColor: '#252525',
workboxOptions: {
skipWaiting: true,
clientsClaim: true,
},
},
css: {
loaderOptions: {
sass: {
prependData: `
@import "@/scss/_variables.scss";
`,
},
},
},
};