file_table_reader/vite.config.js

19 lines
385 B
JavaScript
Raw Permalink Normal View History

2025-10-30 04:28:14 +00:00
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react-swc'
import tailwindcss from '@tailwindcss/vite'
2025-11-24 01:58:37 +00:00
import * as path from "path";
2025-10-30 04:28:14 +00:00
// https://vite.dev/config/
export default defineConfig({
plugins: [
react(),
tailwindcss(),
],
2025-11-04 15:47:48 +00:00
resolve: {
alias: {
stream: 'stream-browserify',
2025-11-24 01:58:37 +00:00
"@": path.resolve(__dirname, "./src"),
2025-11-04 15:47:48 +00:00
},
},
2025-10-30 04:28:14 +00:00
})