2021-07-25 15:27:15 +02:00
|
|
|
const {createVuePlugin} = require('vite-plugin-vue2')
|
|
|
|
const {VitePWA} = require('vite-plugin-pwa')
|
|
|
|
const path = require('path')
|
2021-07-25 16:02:49 +02:00
|
|
|
const {visualizer} = require('rollup-plugin-visualizer')
|
2021-07-25 15:27:15 +02:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
plugins: [
|
|
|
|
createVuePlugin(),
|
|
|
|
VitePWA({
|
|
|
|
strategies: 'injectManifest',
|
|
|
|
injectRegister: false,
|
|
|
|
injectManifest: {
|
|
|
|
swSrc: './src/ServiceWorker/sw.js',
|
|
|
|
swDest: './dist/sw.js',
|
|
|
|
},
|
|
|
|
manifest: {
|
|
|
|
name: 'Vikunja',
|
|
|
|
short_name: 'Vikunja',
|
|
|
|
theme_color: '#1973ff',
|
|
|
|
icons: [
|
|
|
|
{
|
|
|
|
src: './images/icons/android-chrome-192x192.png',
|
|
|
|
sizes: '192x192',
|
|
|
|
type: 'image/png',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
src: './images/icons/android-chrome-512x512.png',
|
|
|
|
sizes: '512x512',
|
|
|
|
type: 'image/png',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
src: './images/icons/icon-maskable.png',
|
|
|
|
sizes: '1024x1024',
|
|
|
|
type: 'image/png',
|
|
|
|
purpose: 'maskable',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
start_url: '.',
|
|
|
|
display: 'standalone',
|
|
|
|
background_color: '#000000',
|
|
|
|
shortcuts: [
|
|
|
|
{
|
|
|
|
name: 'Overview',
|
|
|
|
url: '/',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Namespaces And Lists Overview',
|
|
|
|
short_name: 'Namespaces & Lists',
|
|
|
|
url: '/namespaces',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Tasks Next Week',
|
|
|
|
short_name: 'Next Week',
|
|
|
|
url: '/tasks/by/week',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Tasks Next Month',
|
|
|
|
short_name: 'Next Month',
|
|
|
|
url: '/tasks/by/month',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Teams Overview',
|
|
|
|
short_name: 'Teams',
|
|
|
|
url: '/teams',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
resolve: {
|
|
|
|
alias: [
|
|
|
|
{
|
|
|
|
find: '@',
|
|
|
|
replacement: path.resolve(__dirname, 'src'),
|
|
|
|
},
|
|
|
|
],
|
|
|
|
extensions: ['.mjs', '.js', '.ts', '.jsx', '.tsx', '.json', '.vue'],
|
|
|
|
},
|
|
|
|
server: {
|
|
|
|
port: 5000,
|
|
|
|
strictPort: true,
|
|
|
|
},
|
|
|
|
build: {
|
|
|
|
target: 'es2015',
|
|
|
|
rollupOptions: {
|
2021-07-25 16:02:49 +02:00
|
|
|
plugins:[
|
|
|
|
visualizer(),
|
|
|
|
],
|
2021-07-25 15:27:15 +02:00
|
|
|
output: {
|
|
|
|
manualChunks: {
|
|
|
|
'user-settings': [
|
|
|
|
'./src/views/user/PasswordReset',
|
|
|
|
'./src/views/user/RequestPasswordReset',
|
|
|
|
'./src/views/user/Settings',
|
|
|
|
],
|
|
|
|
'settings': [
|
|
|
|
'./src/views/list/NewList',
|
|
|
|
'./src/views/namespaces/NewNamespace',
|
|
|
|
'./src/views/teams/EditTeam',
|
|
|
|
'./src/views/teams/NewTeam',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|