mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-29 09:02:03 +00:00
38 lines
852 B
TypeScript
38 lines
852 B
TypeScript
import type { WebpackConfigContext } from '../utils/config'
|
|
import { fileName } from '../utils/config'
|
|
|
|
export function assets (ctx: WebpackConfigContext) {
|
|
ctx.config.module!.rules!.push(
|
|
{
|
|
test: /\.(png|jpe?g|gif|svg|webp)$/i,
|
|
use: [{
|
|
loader: 'url-loader',
|
|
options: {
|
|
...ctx.userConfig.loaders.imgUrl,
|
|
name: fileName(ctx, 'img')
|
|
}
|
|
}]
|
|
},
|
|
{
|
|
test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/i,
|
|
use: [{
|
|
loader: 'url-loader',
|
|
options: {
|
|
...ctx.userConfig.loaders.fontUrl,
|
|
name: fileName(ctx, 'font')
|
|
}
|
|
}]
|
|
},
|
|
{
|
|
test: /\.(webm|mp4|ogv)$/i,
|
|
use: [{
|
|
loader: 'file-loader',
|
|
options: {
|
|
...ctx.userConfig.loaders.file,
|
|
name: fileName(ctx, 'video')
|
|
}
|
|
}]
|
|
}
|
|
)
|
|
}
|