2023-01-13 18:10:41 -08:00
|
|
|
import path from 'path';
|
2023-04-13 07:23:11 -07:00
|
|
|
import pluginReplace from '@rollup/plugin-replace';
|
2022-05-01 06:51:07 -07:00
|
|
|
import pluginVue from '@vitejs/plugin-vue';
|
2023-04-03 17:38:34 -07:00
|
|
|
import { type UserConfig, defineConfig } from 'vite';
|
2022-05-01 06:51:07 -07:00
|
|
|
|
2023-12-23 23:16:58 -08:00
|
|
|
import locales from '../../locales/index.js';
|
2022-05-01 06:51:07 -07:00
|
|
|
import meta from '../../package.json';
|
2023-12-23 23:16:58 -08:00
|
|
|
import pluginUnwindCssModuleClassName from './lib/rollup-plugin-unwind-css-module-class-name.js';
|
|
|
|
import pluginJson5 from './vite.json5.js';
|
2022-05-01 06:51:07 -07:00
|
|
|
|
|
|
|
const extensions = ['.ts', '.tsx', '.js', '.jsx', '.mjs', '.json', '.json5', '.svg', '.sass', '.scss', '.css', '.vue'];
|
|
|
|
|
2023-01-09 15:39:19 -08:00
|
|
|
const hash = (str: string, seed = 0): number => {
|
|
|
|
let h1 = 0xdeadbeef ^ seed,
|
|
|
|
h2 = 0x41c6ce57 ^ seed;
|
|
|
|
for (let i = 0, ch; i < str.length; i++) {
|
|
|
|
ch = str.charCodeAt(i);
|
|
|
|
h1 = Math.imul(h1 ^ ch, 2654435761);
|
|
|
|
h2 = Math.imul(h2 ^ ch, 1597334677);
|
|
|
|
}
|
2023-03-08 19:48:39 -08:00
|
|
|
|
2023-01-09 15:39:19 -08:00
|
|
|
h1 = Math.imul(h1 ^ (h1 >>> 16), 2246822507) ^ Math.imul(h2 ^ (h2 >>> 13), 3266489909);
|
|
|
|
h2 = Math.imul(h2 ^ (h2 >>> 16), 2246822507) ^ Math.imul(h1 ^ (h1 >>> 13), 3266489909);
|
2023-03-08 19:48:39 -08:00
|
|
|
|
2023-01-09 15:39:19 -08:00
|
|
|
return 4294967296 * (2097151 & h2) + (h1 >>> 0);
|
|
|
|
};
|
|
|
|
|
|
|
|
const BASE62_DIGITS = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
|
2023-12-23 23:16:58 -08:00
|
|
|
|
2023-01-09 15:39:19 -08:00
|
|
|
function toBase62(n: number): string {
|
|
|
|
if (n === 0) {
|
|
|
|
return '0';
|
|
|
|
}
|
2023-03-08 19:48:39 -08:00
|
|
|
let result = '';
|
2023-01-09 15:39:19 -08:00
|
|
|
while (n > 0) {
|
|
|
|
result = BASE62_DIGITS[n % BASE62_DIGITS.length] + result;
|
|
|
|
n = Math.floor(n / BASE62_DIGITS.length);
|
|
|
|
}
|
2023-03-08 19:48:39 -08:00
|
|
|
|
2023-01-09 15:39:19 -08:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2023-04-03 17:38:34 -07:00
|
|
|
export function getConfig(): UserConfig {
|
2022-05-01 06:51:07 -07:00
|
|
|
return {
|
2022-12-19 20:05:36 -08:00
|
|
|
base: '/vite/',
|
2022-05-01 06:51:07 -07:00
|
|
|
|
2023-05-05 18:25:15 -07:00
|
|
|
server: {
|
|
|
|
port: 5173,
|
|
|
|
},
|
|
|
|
|
2022-05-01 06:51:07 -07:00
|
|
|
plugins: [
|
2023-12-06 21:42:09 -08:00
|
|
|
pluginVue(),
|
2023-06-01 01:19:46 -07:00
|
|
|
pluginUnwindCssModuleClassName(),
|
2022-05-01 06:51:07 -07:00
|
|
|
pluginJson5(),
|
2023-04-13 07:23:11 -07:00
|
|
|
...process.env.NODE_ENV === 'production'
|
|
|
|
? [
|
|
|
|
pluginReplace({
|
|
|
|
preventAssignment: true,
|
|
|
|
values: {
|
|
|
|
'isChromatic()': JSON.stringify(false),
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
]
|
|
|
|
: [],
|
2022-05-01 06:51:07 -07:00
|
|
|
],
|
|
|
|
|
|
|
|
resolve: {
|
|
|
|
extensions,
|
|
|
|
alias: {
|
|
|
|
'@/': __dirname + '/src/',
|
|
|
|
'/client-assets/': __dirname + '/assets/',
|
|
|
|
'/static-assets/': __dirname + '/../backend/assets/',
|
2023-01-22 04:25:55 -08:00
|
|
|
'/fluent-emojis/': __dirname + '/../../fluent-emojis/dist/',
|
|
|
|
'/fluent-emoji/': __dirname + '/../../fluent-emojis/dist/',
|
2022-05-01 06:51:07 -07:00
|
|
|
},
|
2023-01-09 15:39:19 -08:00
|
|
|
},
|
|
|
|
|
|
|
|
css: {
|
|
|
|
modules: {
|
2023-04-03 17:38:34 -07:00
|
|
|
generateScopedName(name, filename, _css): string {
|
2023-01-15 20:59:14 -08:00
|
|
|
const id = (path.relative(__dirname, filename.split('?')[0]) + '-' + name).replace(/[\\\/\.\?&=]/g, '-').replace(/(src-|vue-)/g, '');
|
2023-01-09 18:15:29 -08:00
|
|
|
if (process.env.NODE_ENV === 'production') {
|
2023-01-15 20:59:14 -08:00
|
|
|
return 'x' + toBase62(hash(id)).substring(0, 4);
|
2023-01-09 18:15:29 -08:00
|
|
|
} else {
|
2023-01-15 20:59:14 -08:00
|
|
|
return id;
|
2023-01-09 18:15:29 -08:00
|
|
|
}
|
2023-01-09 15:39:19 -08:00
|
|
|
},
|
|
|
|
},
|
2022-05-01 06:51:07 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
define: {
|
|
|
|
_VERSION_: JSON.stringify(meta.version),
|
|
|
|
_LANGS_: JSON.stringify(Object.entries(locales).map(([k, v]) => [k, v._lang_])),
|
|
|
|
_ENV_: JSON.stringify(process.env.NODE_ENV),
|
|
|
|
_DEV_: process.env.NODE_ENV !== 'production',
|
|
|
|
_PERF_PREFIX_: JSON.stringify('Misskey:'),
|
|
|
|
_DATA_TRANSFER_DRIVE_FILE_: JSON.stringify('mk_drive_file'),
|
|
|
|
_DATA_TRANSFER_DRIVE_FOLDER_: JSON.stringify('mk_drive_folder'),
|
|
|
|
_DATA_TRANSFER_DECK_COLUMN_: JSON.stringify('mk_deck_column'),
|
2023-05-13 21:23:25 -07:00
|
|
|
__VUE_OPTIONS_API__: true,
|
2022-05-01 06:51:07 -07:00
|
|
|
__VUE_PROD_DEVTOOLS__: false,
|
|
|
|
},
|
|
|
|
|
|
|
|
build: {
|
2023-01-08 23:16:00 -08:00
|
|
|
target: [
|
2023-09-15 03:49:52 -07:00
|
|
|
'chrome116',
|
|
|
|
'firefox116',
|
2023-01-08 23:45:18 -08:00
|
|
|
'safari16',
|
2023-01-08 23:16:00 -08:00
|
|
|
],
|
2022-05-01 06:51:07 -07:00
|
|
|
manifest: 'manifest.json',
|
|
|
|
rollupOptions: {
|
|
|
|
input: {
|
2023-05-15 03:08:46 -07:00
|
|
|
app: './src/_boot_.ts',
|
2022-05-01 06:51:07 -07:00
|
|
|
},
|
|
|
|
output: {
|
|
|
|
manualChunks: {
|
2022-06-20 01:38:49 -07:00
|
|
|
vue: ['vue'],
|
2023-01-17 00:36:18 -08:00
|
|
|
photoswipe: ['photoswipe', 'photoswipe/lightbox', 'photoswipe/style.css'],
|
2022-05-01 06:51:07 -07:00
|
|
|
},
|
2023-05-30 02:55:22 -07:00
|
|
|
chunkFileNames: process.env.NODE_ENV === 'production' ? '[hash:8].js' : '[name]-[hash:8].js',
|
|
|
|
assetFileNames: process.env.NODE_ENV === 'production' ? '[hash:8][extname]' : '[name]-[hash:8][extname]',
|
2022-05-01 06:51:07 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
cssCodeSplit: true,
|
2022-12-19 20:05:36 -08:00
|
|
|
outDir: __dirname + '/../../built/_vite_',
|
2022-05-01 06:51:07 -07:00
|
|
|
assetsDir: '.',
|
|
|
|
emptyOutDir: false,
|
2022-12-19 20:05:36 -08:00
|
|
|
sourcemap: process.env.NODE_ENV === 'development',
|
2022-05-01 06:51:07 -07:00
|
|
|
reportCompressedSize: false,
|
2023-03-29 17:33:19 -07:00
|
|
|
|
|
|
|
// https://vitejs.dev/guide/dep-pre-bundling.html#monorepos-and-linked-dependencies
|
|
|
|
commonjsOptions: {
|
2024-01-19 16:53:26 -08:00
|
|
|
include: [/misskey-js/, /misskey-reversi/, /misskey-bubble-game/, /node_modules/],
|
2023-03-29 17:33:19 -07:00
|
|
|
},
|
2022-05-01 06:51:07 -07:00
|
|
|
},
|
2023-03-08 19:48:39 -08:00
|
|
|
|
2023-05-18 17:44:06 -07:00
|
|
|
worker: {
|
|
|
|
format: 'es',
|
|
|
|
},
|
|
|
|
|
2023-03-08 19:48:39 -08:00
|
|
|
test: {
|
|
|
|
environment: 'happy-dom',
|
|
|
|
deps: {
|
2023-11-28 17:41:11 -08:00
|
|
|
optimizer: {
|
|
|
|
web: {
|
|
|
|
include: [
|
|
|
|
// XXX: misskey-dev/browser-image-resizer has no "type": "module"
|
|
|
|
'browser-image-resizer',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
2023-03-08 19:48:39 -08:00
|
|
|
},
|
2024-01-19 15:11:59 -08:00
|
|
|
includeSource: ['src/**/*.ts'],
|
2023-03-08 19:48:39 -08:00
|
|
|
},
|
2022-06-20 01:38:49 -07:00
|
|
|
};
|
2023-04-03 17:38:34 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
const config = defineConfig(({ command, mode }) => getConfig());
|
|
|
|
|
|
|
|
export default config;
|