mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-16 14:31:16 +00:00
45 lines
1004 B
JavaScript
45 lines
1004 B
JavaScript
|
import {node} from '../../.electron-vendors.cache.json';
|
||
|
import {join} from 'node:path';
|
||
|
import {injectAppVersion} from '../../version/inject-app-version-plugin.mjs';
|
||
|
|
||
|
const PACKAGE_ROOT = __dirname;
|
||
|
const PROJECT_ROOT = join(PACKAGE_ROOT, '../..');
|
||
|
|
||
|
/**
|
||
|
* @type {import('vite').UserConfig}
|
||
|
* @see https://vitejs.dev/config/
|
||
|
*/
|
||
|
const config = {
|
||
|
mode: process.env.MODE,
|
||
|
root: PACKAGE_ROOT,
|
||
|
envDir: PROJECT_ROOT,
|
||
|
resolve: {
|
||
|
alias: {
|
||
|
'/@/': join(PACKAGE_ROOT, 'src') + '/',
|
||
|
'@common': join(PACKAGE_ROOT, '../common/'),
|
||
|
},
|
||
|
},
|
||
|
build: {
|
||
|
ssr: true,
|
||
|
sourcemap: 'inline',
|
||
|
target: `node${node}`,
|
||
|
outDir: 'dist',
|
||
|
assetsDir: '.',
|
||
|
minify: process.env.MODE !== 'development',
|
||
|
lib: {
|
||
|
entry: 'src/index.ts',
|
||
|
formats: ['cjs'],
|
||
|
},
|
||
|
rollupOptions: {
|
||
|
output: {
|
||
|
entryFileNames: '[name].cjs',
|
||
|
},
|
||
|
},
|
||
|
emptyOutDir: true,
|
||
|
reportCompressedSize: false,
|
||
|
},
|
||
|
plugins: [injectAppVersion()],
|
||
|
};
|
||
|
|
||
|
export default config;
|