You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
90 lines
2.0 KiB
90 lines
2.0 KiB
import { execSync } from 'child_process';
|
|
import { resolve } from 'path';
|
|
import { visualizer } from 'rollup-plugin-visualizer';
|
|
import { defineConfig } from 'vite';
|
|
import importToCDN from 'vite-plugin-cdn-import';
|
|
import EnvironmentPlugin from 'vite-plugin-environment';
|
|
import { VitePWA } from 'vite-plugin-pwa';
|
|
|
|
import react from '@vitejs/plugin-react';
|
|
|
|
let hash = '';
|
|
|
|
try {
|
|
hash = execSync('git rev-parse --short HEAD').toString().trim();
|
|
} catch (error) {
|
|
hash = 'DEVELOPMENT';
|
|
}
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
react(),
|
|
EnvironmentPlugin({
|
|
COMMIT_HASH: hash,
|
|
}),
|
|
importToCDN({
|
|
modules: [
|
|
{
|
|
name: 'mapbox-gl',
|
|
var: 'mapboxgl',
|
|
path: `dist/mapbox-gl.js`,
|
|
},
|
|
],
|
|
}),
|
|
|
|
VitePWA({
|
|
mode: 'production',
|
|
|
|
includeAssets: [
|
|
'favicon.svg',
|
|
'favicon.ico',
|
|
'robots.txt',
|
|
'touch-icon.png',
|
|
],
|
|
manifest: {
|
|
name: 'Meshtastic Web',
|
|
short_name: 'Meshtastic',
|
|
description: 'Meshtastic Web App',
|
|
theme_color: '#67ea94',
|
|
icons: [
|
|
{
|
|
src: 'android-192.png',
|
|
sizes: '192x192',
|
|
type: 'image/png',
|
|
},
|
|
{
|
|
src: 'android-512.png',
|
|
sizes: '512x512',
|
|
type: 'image/png',
|
|
},
|
|
{
|
|
src: 'android-512.png',
|
|
sizes: '512x512',
|
|
type: 'image/png',
|
|
purpose: 'any maskable',
|
|
},
|
|
],
|
|
},
|
|
workbox: {
|
|
sourcemap: true,
|
|
},
|
|
}),
|
|
],
|
|
build: {
|
|
target: 'esnext',
|
|
assetsDir: '',
|
|
rollupOptions: {
|
|
plugins: [visualizer()],
|
|
},
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'@app': resolve(__dirname, './src'),
|
|
'@pages': resolve(__dirname, './src/pages'),
|
|
'@components': resolve(__dirname, './src/components'),
|
|
'@hooks': resolve(__dirname, './src/hooks'),
|
|
'@core': resolve(__dirname, './src/core'),
|
|
'@skypack/': 'https://cdn.skypack.dev/',
|
|
},
|
|
},
|
|
});
|
|
|