dev-server.config.ts 258 B

123456789101112
  1. import { Configuration } from 'webpack-dev-server';
  2. export function configFunc(contentBase: string): Configuration {
  3. return {
  4. watchOptions: {
  5. poll: true,
  6. },
  7. contentBase: contentBase,
  8. compress: true,
  9. hot: true,
  10. };
  11. }