Skip to content

Latest commit

 

History

History
25 lines (23 loc) · 434 Bytes

File metadata and controls

25 lines (23 loc) · 434 Bytes

Usage

// webpack
export default {
  module: {
    rules: [
      {
        test: /\.(js|mjs|jsx|ts|tsx)$/,
        enforce: 'pre',
        use: [
          {
            loader: '@geeeger/webpack-remove-loader',
            options: {
              start: '/* remove-start */',
              end: '/* remove-end */'
            },
          },
        ],
        include: appPath,
      }
    }
}