20 lines
336 B
TypeScript
20 lines
336 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
define: {
|
|
global: {},
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
buffer: 'buffer',
|
|
},
|
|
},
|
|
optimizeDeps: {
|
|
include: ['buffer'],
|
|
},
|
|
assetsInclude: ['**/*.md'],
|
|
})
|