Set up the project structure using Vite, React, and Tailwind CSS. Added initial landing page components, assets, and build configuration for the OneOSS Hydrogen Safety & Carbon Factor Box application.
23 lines
708 B
TypeScript
23 lines
708 B
TypeScript
import tailwindcss from '@tailwindcss/vite';
|
||
import react from '@vitejs/plugin-react';
|
||
import path from 'path';
|
||
import {defineConfig} from 'vite';
|
||
|
||
export default defineConfig(() => {
|
||
return {
|
||
plugins: [react(), tailwindcss()],
|
||
resolve: {
|
||
alias: {
|
||
'@': path.resolve(__dirname, '.'),
|
||
},
|
||
},
|
||
server: {
|
||
// HMR is disabled in AI Studio via DISABLE_HMR env var.
|
||
// Do not modifyâfile watching is disabled to prevent flickering during agent edits.
|
||
hmr: process.env.DISABLE_HMR !== 'true',
|
||
// Disable file watching when DISABLE_HMR is true to save CPU during agent edits.
|
||
watch: process.env.DISABLE_HMR === 'true' ? null : {},
|
||
},
|
||
};
|
||
});
|