mirror of
https://github.com/nuxt/nuxt.git
synced 2024-12-02 02:17:15 +00:00
37 lines
829 B
TypeScript
37 lines
829 B
TypeScript
import { fileName, WebpackConfigContext } 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.options.webpack.loaders.imgUrl,
|
|
name: fileName(ctx, 'img')
|
|
}
|
|
}]
|
|
},
|
|
{
|
|
test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/i,
|
|
use: [{
|
|
loader: 'url-loader',
|
|
options: {
|
|
...ctx.options.webpack.loaders.fontUrl,
|
|
name: fileName(ctx, 'font')
|
|
}
|
|
}]
|
|
},
|
|
{
|
|
test: /\.(webm|mp4|ogv)$/i,
|
|
use: [{
|
|
loader: 'file-loader',
|
|
options: {
|
|
...ctx.options.webpack.loaders.file,
|
|
name: fileName(ctx, 'video')
|
|
}
|
|
}]
|
|
}
|
|
)
|
|
}
|