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.
43 lines
1.1 KiB
43 lines
1.1 KiB
2 weeks ago
|
import { defineConfig } from "vite";
|
||
|
import vue from "@vitejs/plugin-vue";
|
||
|
import path from "path";
|
||
|
|
||
|
export default defineConfig({
|
||
|
plugins: [vue()],
|
||
|
resolve: {
|
||
|
alias: {
|
||
|
'@': path.resolve(__dirname, './src'),
|
||
|
'nostr-tools': path.resolve(__dirname, 'node_modules/nostr-tools'),
|
||
|
'nostr-tools/nip06': path.resolve(__dirname, 'node_modules/nostr-tools/nip06'),
|
||
|
'nostr-tools/core': path.resolve(__dirname, 'node_modules/nostr-tools/core'),
|
||
|
stream: 'stream-browserify',
|
||
|
util: 'util'
|
||
|
},
|
||
|
mainFields: ['module', 'jsnext:main', 'jsnext', 'main'],
|
||
|
},
|
||
|
optimizeDeps: {
|
||
|
include: ['nostr-tools', 'nostr-tools/nip06', 'nostr-tools/core'],
|
||
|
esbuildOptions: {
|
||
|
define: {
|
||
|
global: 'globalThis'
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
build: {
|
||
|
sourcemap: true,
|
||
|
target: 'esnext',
|
||
|
commonjsOptions: {
|
||
|
include: [/node_modules/],
|
||
|
transformMixedEsModules: true
|
||
|
},
|
||
|
rollupOptions: {
|
||
|
external: ['stream', 'util'],
|
||
|
output: {
|
||
|
globals: {
|
||
|
stream: 'stream',
|
||
|
util: 'util'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
});
|