Codex Deploy
Prepare local Hugging Face deployment
191b322
raw
history blame contribute delete
451 Bytes
import path from 'path';
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import tailwindcss from '@tailwindcss/vite';
export default defineConfig(({ mode }) => {
return {
server: {
port: 3000,
host: '0.0.0.0',
},
plugins: [
react(),
tailwindcss(),
],
resolve: {
alias: {
'@': path.resolve(__dirname, '.'),
}
}
};
});