Nuxt/packages/webpack/src/presets/nuxt.ts
izzy goldman 373d015ae7
refactor(schema,vite,webpack): rework postcss module loading (#27946)
Co-authored-by: Daniel Roe <daniel@roe.dev>
2024-07-02 19:28:48 +01:00

21 lines
453 B
TypeScript

import type { WebpackConfigContext } from '../utils/config'
import { applyPresets } from '../utils/config'
import { assets } from './assets'
import { base } from './base'
import { esbuild } from './esbuild'
import { pug } from './pug'
import { style } from './style'
import { vue } from './vue'
export async function nuxt (ctx: WebpackConfigContext) {
await applyPresets(ctx, [
base,
assets,
esbuild,
pug,
style,
vue,
])
}