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.
47 lines
1.2 KiB
47 lines
1.2 KiB
import { defineConfig } from "vite";
|
|
import vue from "@vitejs/plugin-vue";
|
|
import path from "path";
|
|
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
// CORS headers removed to allow images from any domain
|
|
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'),
|
|
stream: 'stream-browserify',
|
|
util: 'util',
|
|
crypto: 'crypto-browserify'
|
|
},
|
|
mainFields: ['module', 'jsnext:main', 'jsnext', 'main'],
|
|
},
|
|
optimizeDeps: {
|
|
include: ['@nostr/tools', '@nostr/tools/nip06', '@jlongster/sql.js'],
|
|
esbuildOptions: {
|
|
define: {
|
|
global: 'globalThis'
|
|
}
|
|
}
|
|
},
|
|
build: {
|
|
sourcemap: true,
|
|
target: 'esnext',
|
|
chunkSizeWarningLimit: 1000,
|
|
commonjsOptions: {
|
|
include: [/node_modules/],
|
|
transformMixedEsModules: true
|
|
},
|
|
rollupOptions: {
|
|
external: ['stream', 'util', 'crypto'],
|
|
output: {
|
|
globals: {
|
|
stream: 'stream',
|
|
util: 'util',
|
|
crypto: 'crypto'
|
|
}
|
|
}
|
|
}
|
|
},
|
|
assetsInclude: ['**/*.wasm']
|
|
});
|