vikunja-frontend/vite.config.ts

137 lines
3.0 KiB
TypeScript
Raw Normal View History

2022-01-01 14:24:06 +01:00
/// <reference types="vitest" />
import {defineConfig} from 'vite'
import vue from '@vitejs/plugin-vue'
2021-10-07 13:59:10 +02:00
import legacyFn from '@vitejs/plugin-legacy'
2022-04-10 02:40:15 +02:00
import {VitePWA} from 'vite-plugin-pwa'
import {visualizer} from 'rollup-plugin-visualizer'
import svgLoader from 'vite-svg-loader'
2022-04-10 02:40:15 +02:00
import { fileURLToPath, URL } from 'url'
2022-04-10 02:40:15 +02:00
const pathSrc = fileURLToPath(new URL('./src', import.meta.url))
// the @use rules have to be the first in the compiled stylesheets
const PREFIXED_SCSS_STYLES = `@use "sass:math";
@import "${pathSrc}/styles/common-imports";`
2021-10-07 13:59:10 +02:00
const isModernBuild = Boolean(process.env.BUILD_MODERN_ONLY)
const legacy = isModernBuild
? undefined
: legacyFn({
// recommended by browserslist => https://github.com/vitejs/vite/tree/main/packages/plugin-legacy#targets
targets: ['defaults', 'not IE 11'],
})
2022-04-10 02:40:15 +02:00
console.log(isModernBuild
? 'Building "modern-only" build'
: 'Building "legacy" build with "@vitejs/plugin-legacy"'
)
2021-10-07 13:59:10 +02:00
2022-04-10 02:40:15 +02:00
// https://vitejs.dev/config/
export default defineConfig({
2022-01-01 14:24:06 +01:00
// https://vitest.dev/config/
test: {
environment: 'happy-dom',
},
css: {
preprocessorOptions: {
scss: {
additionalData: PREFIXED_SCSS_STYLES,
charset: false, // fixes "@charset" must be the first rule in the file" warnings
},
},
},
plugins: [
vue({
reactivityTransform: true,
}),
2021-10-07 13:59:10 +02:00
legacy,
svgLoader({
// Since the svgs are already manually optimized via https://jakearchibald.github.io/svgomg/
// we don't need to optimize them again.
svgo: false,
}),
VitePWA({
srcDir: 'src',
2022-02-15 13:07:34 +01:00
filename: 'sw.ts',
base: '/',
strategies: 'injectManifest',
injectRegister: false,
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: '@',
2022-04-10 02:40:15 +02:00
replacement: pathSrc,
},
],
extensions: ['.mjs', '.js', '.ts', '.jsx', '.tsx', '.json', '.vue'],
},
server: {
port: 4173,
strictPort: true,
},
build: {
rollupOptions: {
plugins: [
2021-08-20 15:17:19 +02:00
visualizer({
filename: 'stats.html',
}),
2021-07-25 16:02:49 +02:00
],
},
},
})