mirror of
https://github.com/ThaUnknown/miru.git
synced 2026-01-12 02:11:28 +00:00
53 lines
1.7 KiB
TypeScript
53 lines
1.7 KiB
TypeScript
import { resolve } from 'node:path'
|
|
|
|
import { sveltekit } from '@sveltejs/kit/vite'
|
|
import license from 'rollup-plugin-license'
|
|
import { defineConfig } from 'vite'
|
|
import devtoolsJson from 'vite-plugin-devtools-json'
|
|
import { viteStaticCopy } from 'vite-plugin-static-copy'
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
sveltekit(),
|
|
license({
|
|
thirdParty: {
|
|
allow: '(MIT OR Apache-2.0 OR ISC OR BSD-3-Clause OR BSD-2-Clause)',
|
|
output: resolve(import.meta.dirname, './build/LICENSE.txt'),
|
|
includeSelf: true
|
|
}
|
|
}),
|
|
viteStaticCopy({
|
|
targets: [
|
|
{ // VITE IS DOG AND DOESNT SUPPORT DYNAMIC JSON IMPORTS
|
|
src: 'node_modules/doc999tor-fast-geoip/data/*.json',
|
|
dest: 'geoip/'
|
|
}
|
|
]
|
|
}),
|
|
devtoolsJson()
|
|
],
|
|
resolve: {
|
|
alias: {
|
|
// thank you bottleneck for importing useless modules
|
|
'./RedisConnection': resolve(import.meta.dirname, 'src/patches/empty.cjs'),
|
|
'./RedisConnection.js': resolve(import.meta.dirname, 'src/patches/empty.cjs'),
|
|
'./RedisDatastore': resolve(import.meta.dirname, 'src/patches/empty.cjs'),
|
|
'./IORedisConnection': resolve(import.meta.dirname, 'src/patches/empty.cjs'),
|
|
'./Scripts': resolve(import.meta.dirname, 'src/patches/empty.cjs'),
|
|
// no exports :/
|
|
'bittorrent-tracker/lib/client/websocket-tracker.js': resolve(import.meta.dirname, 'node_modules/bittorrent-tracker/lib/client/websocket-tracker.js'),
|
|
debug: resolve(import.meta.dirname, 'src/patches/debug.ts')
|
|
}
|
|
},
|
|
server: { port: 7344 },
|
|
build: {
|
|
target: 'es2020',
|
|
sourcemap: true
|
|
},
|
|
ssr: {
|
|
target: 'webworker'
|
|
},
|
|
optimizeDeps: {
|
|
exclude: ['anitomyscript']
|
|
}
|
|
})
|