mirror of
https://github.com/Rushilwiz/spaceout.git
synced 2025-04-22 20:39:50 -04:00
12 lines
324 B
TypeScript
12 lines
324 B
TypeScript
import { devServerOptionsType } from './types';
|
|
/**
|
|
*
|
|
* Get the devServer option from the user's compiler options
|
|
*
|
|
* @param {Object} compiler - webpack compiler
|
|
* @param {Object} webpackArgs - webpack args
|
|
*
|
|
* @returns {Object}
|
|
*/
|
|
export default function getDevServerOptions(compiler: any): devServerOptionsType[];
|