2022-12-10 09:14:48 +00:00
|
|
|
import preact from '@preact/preset-vite';
|
2022-12-15 06:42:34 +00:00
|
|
|
import { execSync } from 'child_process';
|
2022-12-28 05:47:11 +00:00
|
|
|
import fs from 'fs';
|
2022-12-13 12:42:09 +00:00
|
|
|
import { resolve } from 'path';
|
2023-12-25 11:25:48 +00:00
|
|
|
import { uid } from 'uid/single';
|
2022-12-22 11:38:02 +00:00
|
|
|
import { defineConfig, loadEnv, splitVendorChunkPlugin } from 'vite';
|
2023-02-28 07:27:42 +00:00
|
|
|
import generateFile from 'vite-plugin-generate-file';
|
2022-12-28 05:47:11 +00:00
|
|
|
import htmlPlugin from 'vite-plugin-html-config';
|
2022-12-19 06:51:56 +00:00
|
|
|
import { VitePWA } from 'vite-plugin-pwa';
|
2023-01-02 07:09:31 +00:00
|
|
|
import removeConsole from 'vite-plugin-remove-console';
|
2022-12-19 06:51:56 +00:00
|
|
|
|
2024-01-05 01:14:09 +00:00
|
|
|
const allowedEnvPrefixes = ['VITE_', 'PHANPY_'];
|
2023-01-02 06:22:01 +00:00
|
|
|
const { NODE_ENV } = process.env;
|
2023-05-24 09:18:22 +00:00
|
|
|
const {
|
2023-12-25 11:25:48 +00:00
|
|
|
PHANPY_CLIENT_NAME: CLIENT_NAME,
|
|
|
|
PHANPY_APP_ERROR_LOGGING: ERROR_LOGGING,
|
2024-01-05 01:14:09 +00:00
|
|
|
} = loadEnv('production', process.cwd(), allowedEnvPrefixes);
|
2022-12-10 09:14:48 +00:00
|
|
|
|
2023-02-28 07:27:42 +00:00
|
|
|
const now = new Date();
|
2023-12-25 11:25:48 +00:00
|
|
|
let commitHash;
|
2023-12-25 12:05:56 +00:00
|
|
|
let fakeCommitHash = false;
|
2023-12-25 11:25:48 +00:00
|
|
|
try {
|
|
|
|
commitHash = execSync('git rev-parse --short HEAD').toString().trim();
|
|
|
|
} catch (error) {
|
|
|
|
// If error, means git is not installed or not a git repo (could be downloaded instead of git cloned)
|
|
|
|
// Fallback to random hash which should be different on every build run 🤞
|
|
|
|
commitHash = uid();
|
2023-12-25 12:05:56 +00:00
|
|
|
fakeCommitHash = true;
|
2023-12-25 11:25:48 +00:00
|
|
|
}
|
2022-12-15 06:42:34 +00:00
|
|
|
|
2022-12-28 05:47:11 +00:00
|
|
|
const rollbarCode = fs.readFileSync(
|
|
|
|
resolve(__dirname, './rollbar.js'),
|
|
|
|
'utf-8',
|
|
|
|
);
|
|
|
|
|
2022-12-10 09:14:48 +00:00
|
|
|
// https://vitejs.dev/config/
|
|
|
|
export default defineConfig({
|
2023-08-30 09:46:22 +00:00
|
|
|
base: './',
|
2024-01-05 01:14:09 +00:00
|
|
|
envPrefix: allowedEnvPrefixes,
|
2024-03-02 05:53:53 +00:00
|
|
|
appType: 'mpa',
|
2022-12-19 06:51:56 +00:00
|
|
|
mode: NODE_ENV,
|
2022-12-15 06:42:34 +00:00
|
|
|
define: {
|
2023-02-28 07:27:42 +00:00
|
|
|
__BUILD_TIME__: JSON.stringify(now),
|
2022-12-15 06:42:34 +00:00
|
|
|
__COMMIT_HASH__: JSON.stringify(commitHash),
|
2023-12-25 12:05:56 +00:00
|
|
|
__FAKE_COMMIT_HASH__: fakeCommitHash,
|
2022-12-15 06:42:34 +00:00
|
|
|
},
|
2023-04-06 08:15:19 +00:00
|
|
|
server: {
|
|
|
|
host: true,
|
|
|
|
},
|
2024-02-09 12:07:06 +00:00
|
|
|
css: {
|
|
|
|
preprocessorMaxWorkers: 1,
|
|
|
|
},
|
2022-12-19 06:51:56 +00:00
|
|
|
plugins: [
|
|
|
|
preact(),
|
|
|
|
splitVendorChunkPlugin(),
|
2023-02-14 11:10:21 +00:00
|
|
|
removeConsole({
|
|
|
|
includes: ['log', 'debug', 'info', 'warn', 'error'],
|
|
|
|
}),
|
2022-12-28 05:47:11 +00:00
|
|
|
htmlPlugin({
|
2023-01-02 06:22:01 +00:00
|
|
|
headScripts: ERROR_LOGGING ? [rollbarCode] : [],
|
2022-12-28 05:47:11 +00:00
|
|
|
}),
|
2023-02-28 07:27:42 +00:00
|
|
|
generateFile([
|
|
|
|
{
|
|
|
|
type: 'json',
|
|
|
|
output: './version.json',
|
|
|
|
data: {
|
|
|
|
buildTime: now,
|
|
|
|
commitHash,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
]),
|
2022-12-19 06:51:56 +00:00
|
|
|
VitePWA({
|
|
|
|
manifest: {
|
|
|
|
name: CLIENT_NAME,
|
|
|
|
short_name: CLIENT_NAME,
|
|
|
|
description: 'Minimalistic opinionated Mastodon web client',
|
2023-12-24 15:43:18 +00:00
|
|
|
// https://github.com/cheeaun/phanpy/issues/231
|
|
|
|
// theme_color: '#ffffff',
|
2022-12-19 06:51:56 +00:00
|
|
|
icons: [
|
|
|
|
{
|
|
|
|
src: 'logo-192.png',
|
|
|
|
sizes: '192x192',
|
|
|
|
type: 'image/png',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
src: 'logo-512.png',
|
|
|
|
sizes: '512x512',
|
|
|
|
type: 'image/png',
|
|
|
|
},
|
2022-12-20 11:12:25 +00:00
|
|
|
{
|
|
|
|
src: 'logo-maskable-512.png',
|
|
|
|
sizes: '512x512',
|
|
|
|
type: 'image/png',
|
|
|
|
purpose: 'maskable',
|
|
|
|
},
|
2022-12-19 06:51:56 +00:00
|
|
|
],
|
2024-03-06 06:25:46 +00:00
|
|
|
categories: ['social', 'news'],
|
2022-12-19 06:51:56 +00:00
|
|
|
},
|
|
|
|
strategies: 'injectManifest',
|
|
|
|
injectRegister: 'inline',
|
|
|
|
injectManifest: {
|
|
|
|
// Prevent "Unable to find a place to inject the manifest" error
|
|
|
|
injectionPoint: undefined,
|
|
|
|
},
|
|
|
|
devOptions: {
|
|
|
|
enabled: NODE_ENV === 'development',
|
|
|
|
type: 'module',
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
],
|
2022-12-13 12:42:09 +00:00
|
|
|
build: {
|
2022-12-15 03:47:11 +00:00
|
|
|
sourcemap: true,
|
2024-03-24 02:08:09 +00:00
|
|
|
cssCodeSplit: false,
|
2022-12-13 12:42:09 +00:00
|
|
|
rollupOptions: {
|
2023-03-22 13:01:03 +00:00
|
|
|
treeshake: false,
|
2022-12-13 12:42:09 +00:00
|
|
|
input: {
|
|
|
|
main: resolve(__dirname, 'index.html'),
|
|
|
|
compose: resolve(__dirname, 'compose/index.html'),
|
|
|
|
},
|
2023-04-14 09:23:41 +00:00
|
|
|
output: {
|
2024-03-04 16:51:53 +00:00
|
|
|
manualChunks: {
|
|
|
|
'intl-segmenter-polyfill': ['@formatjs/intl-segmenter/polyfill'],
|
|
|
|
},
|
2023-04-14 09:23:41 +00:00
|
|
|
chunkFileNames: (chunkInfo) => {
|
|
|
|
const { facadeModuleId } = chunkInfo;
|
|
|
|
if (facadeModuleId && facadeModuleId.includes('icon')) {
|
|
|
|
return 'assets/icons/[name]-[hash].js';
|
|
|
|
}
|
|
|
|
return 'assets/[name]-[hash].js';
|
|
|
|
},
|
|
|
|
},
|
2022-12-13 12:42:09 +00:00
|
|
|
},
|
|
|
|
},
|
2022-12-10 09:14:48 +00:00
|
|
|
});
|