soapbox/vite.config.ts

91 wiersze
2.3 KiB
TypeScript
Czysty Zwykły widok Historia

/// <reference types="vitest" />
import { fileURLToPath, URL } from 'node:url';
2023-09-13 17:04:17 +00:00
import react from '@vitejs/plugin-react';
import { visualizer } from 'rollup-plugin-visualizer';
2023-09-13 17:04:17 +00:00
import { defineConfig } from 'vite';
import compileTime from 'vite-plugin-compile-time';
import { createHtmlPlugin } from 'vite-plugin-html';
2023-09-15 19:37:09 +00:00
import { VitePWA } from 'vite-plugin-pwa';
2023-09-13 17:04:17 +00:00
import vitePluginRequire from 'vite-plugin-require';
import { viteStaticCopy } from 'vite-plugin-static-copy';
export default defineConfig({
build: {
assetsDir: 'packs',
assetsInlineLimit: 0,
2023-09-15 00:14:16 +00:00
rollupOptions: {
output: {
assetFileNames: 'packs/assets/[name]-[hash].[ext]',
chunkFileNames: 'packs/js/[name]-[hash].js',
entryFileNames: 'packs/[name]-[hash].js',
},
},
2023-09-13 17:04:17 +00:00
},
2023-09-18 21:57:13 +00:00
assetsInclude: ['**/*.oga'],
2023-09-13 17:24:49 +00:00
server: {
port: 3036,
},
2023-09-13 17:04:17 +00:00
plugins: [
// @ts-ignore
vitePluginRequire.default(),
2023-09-15 19:37:09 +00:00
compileTime(),
2023-09-13 17:04:17 +00:00
createHtmlPlugin({
2023-09-18 21:57:13 +00:00
template: 'src/index.html',
minify: {
collapseWhitespace: true,
removeComments: false,
},
2023-09-13 17:04:17 +00:00
}),
react({
// Use React plugin in all *.jsx and *.tsx files
include: '**/*.{jsx,tsx}',
2023-09-13 21:35:41 +00:00
babel: {
configFile: './babel.config.cjs',
},
2023-09-13 17:04:17 +00:00
}),
2023-09-15 19:37:09 +00:00
VitePWA({
injectRegister: null,
strategies: 'injectManifest',
injectManifest: {
injectionPoint: undefined,
plugins: [
// @ts-ignore
compileTime(),
],
},
manifestFilename: 'manifest.json',
manifest: {
name: 'Soapbox',
short_name: 'Soapbox',
description: 'A social media frontend with a focus on custom branding and ease of use.',
},
2023-09-18 21:57:13 +00:00
srcDir: 'src/service-worker',
2023-09-15 19:37:09 +00:00
filename: 'sw.ts',
}),
2023-09-13 17:04:17 +00:00
viteStaticCopy({
targets: [{
2023-09-18 21:57:13 +00:00
src: './node_modules/twemoji/assets/svg/*',
2023-09-13 17:04:17 +00:00
dest: 'packs/emoji/',
2023-09-18 21:59:17 +00:00
}, {
src: './src/instance',
dest: '.',
2023-09-13 17:04:17 +00:00
}],
}),
visualizer({
emitFile: true,
filename: 'report.html',
title: 'Soapbox Bundle',
}),
2023-09-13 17:04:17 +00:00
],
resolve: {
alias: [
{ find: 'soapbox', replacement: fileURLToPath(new URL('./src', import.meta.url)) },
2023-09-13 17:04:17 +00:00
],
},
test: {
globals: true,
environment: 'jsdom',
2023-09-18 21:57:13 +00:00
setupFiles: 'src/jest/test-setup.ts',
},
2023-09-13 17:04:17 +00:00
});