Nuxt/packages/webpack/builder.d.ts
Daniel Roe 01bee2f0ea
feat(rspack,webpack): add rspack builder (#29142)
Co-authored-by: "yangjian.fe" <yangjian.fe@bytedance.com>
Co-authored-by: underfin <likui6666666@gmail.com>
2024-10-09 14:57:54 +01:00

9 lines
283 B
TypeScript

declare module '#builder' {
import type Webpack from 'webpack'
import type MiniCssExtractPlugin from 'mini-css-extract-plugin'
export const webpack: typeof Webpack
export const MiniCssExtractPlugin: typeof MiniCssExtractPlugin
export const builder: 'webpack' | 'rspack'
}