2026-03-28 12:11:41 +00:00
|
|
|
import { defineConfig } from 'vite';
|
|
|
|
|
import symfonyPlugin from 'vite-plugin-symfony';
|
|
|
|
|
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
plugins: [
|
2026-03-28 12:51:54 +00:00
|
|
|
symfonyPlugin({
|
|
|
|
|
stimulus: true,
|
|
|
|
|
}),
|
2026-03-28 12:11:41 +00:00
|
|
|
],
|
2026-03-28 12:51:54 +00:00
|
|
|
esbuild: {
|
|
|
|
|
jsx: 'automatic',
|
|
|
|
|
},
|
2026-03-28 12:11:41 +00:00
|
|
|
build: {
|
|
|
|
|
rollupOptions: {
|
|
|
|
|
input: {
|
|
|
|
|
app: './assets/app.js',
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
server: {
|
|
|
|
|
host: '0.0.0.0',
|
|
|
|
|
port: 5173,
|
|
|
|
|
strictPort: true,
|
|
|
|
|
origin: 'http://localhost:5173',
|
2026-03-28 12:36:57 +00:00
|
|
|
cors: true,
|
|
|
|
|
hmr: {
|
|
|
|
|
host: 'localhost',
|
|
|
|
|
port: 5173,
|
2026-03-28 12:51:54 +00:00
|
|
|
protocol: 'ws',
|
2026-03-28 12:36:57 +00:00
|
|
|
},
|
2026-03-28 12:11:41 +00:00
|
|
|
},
|
|
|
|
|
});
|