82 lines
1.9 KiB
TypeScript
82 lines
1.9 KiB
TypeScript
import react from '@vitejs/plugin-react'
|
|
import * as path from 'path';
|
|
import { defineConfig } from 'vite';
|
|
import { VitePWA } from 'vite-plugin-pwa';
|
|
|
|
import * as pkg from './package.json';
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig(async ({ mode }) => {
|
|
let hash = process.env.COMMIT_HASH;
|
|
if (!hash) {
|
|
try {
|
|
hash = await gitHash();
|
|
} catch (e) { }
|
|
}
|
|
if (!hash) hash = '';
|
|
|
|
return {
|
|
define: {
|
|
__VERSION__: JSON.stringify(pkg.version),
|
|
__COMMIT_HASH__: JSON.stringify(hash),
|
|
'process.env.NODE_ENV': JSON.stringify(mode),
|
|
'process.env.PUBLIC_URL': JSON.stringify('./'),
|
|
},
|
|
base: './',
|
|
resolve: {
|
|
alias: {
|
|
$src: path.resolve(__dirname, './src'),
|
|
src: path.resolve(__dirname, './src'),
|
|
},
|
|
},
|
|
publicDir: 'assets',
|
|
build: {
|
|
// sourcemap: true,
|
|
// the default value is 'dist'
|
|
// which make more sense
|
|
// but change this may break other people's tools
|
|
outDir: 'public',
|
|
},
|
|
plugins: [
|
|
react(),
|
|
VitePWA({
|
|
srcDir: 'src',
|
|
outDir: 'public',
|
|
filename: 'sw.ts',
|
|
strategies: 'injectManifest',
|
|
base: './',
|
|
}),
|
|
],
|
|
}
|
|
});
|
|
|
|
// non vite stuff
|
|
|
|
async function gitHash() {
|
|
try {
|
|
const mod = await import('node:child_process');
|
|
return await run(mod.spawn, 'git', ['rev-parse', '--short', 'HEAD']);
|
|
} catch (e) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
function run(spawn: typeof import('node:child_process').spawn, cmd0: string, args0: string[]): Promise<string> {
|
|
const cmd = cmd0;
|
|
const args = args0;
|
|
|
|
return new Promise((resolve, reject) => {
|
|
const proc = spawn(cmd, args);
|
|
let out = Buffer.from('');
|
|
proc.stdout.on('data', (data) => {
|
|
out += data;
|
|
});
|
|
proc.on('error', (err) => {
|
|
reject(err);
|
|
});
|
|
proc.on('exit', (code) => {
|
|
if (code !== 0) reject(code);
|
|
resolve(out.toString());
|
|
});
|
|
});
|
|
}
|