module.exports = {
devServer: {
static: './dist',
port: 3000,
open: true,
hot: true,
compress: true,
historyApiFallback: true, // For SPA routing
proxy: {
'/api': {
target: 'http://localhost:8080',
changeOrigin: true
}
}
}
};
Key options:
static: Serve static files from directoryhot: Enable HMRproxy: Proxy API requests to another serverhistoryApiFallback: Handle client-side routing