我正在使用自定义 webpack 将 webpack 与 Angular 8 一起使用,我想使用 url-loader 来内联 SVG,因为应用程序被部署到的服务器不支持 SVG image/svg+xml mimetype(我无法更改它来支持它(。但是,当我构建应用程序时,SVG 没有内联。
Angular.json:
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"Emergent-Event": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "less"
}
},
"root": "",
"sourceRoot": "src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-builders/custom-webpack:browser",
"options": {
"customWebpackConfig": {
"path": "./extra-webpack.config.js"
},
"outputPath": "dist/Emergent-Event",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.app.json",
"aot": false,
"assets": [
...
],
"styles": [
...
],
"scripts": [
...
]
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "6kb",
"maximumError": "10kb"
}
]
}
}
},
"serve": {
"builder": "@angular-builders/custom-webpack:dev-server",
"options": {
"browserTarget": "Emergent-Event:build"
},
"configurations": {
"production": {
"browserTarget": "Emergent-Event:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "Emergent-Event:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "src/test.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.spec.json",
"karmaConfig": "karma.conf.js",
"assets": [
...
],
"styles": [
...
],
"scripts": [
...
]
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"tsconfig.app.json",
"tsconfig.spec.json",
"e2e/tsconfig.json"
],
"exclude": [
"**/node_modules/**"
]
}
},
"e2e": {
"builder": "@angular-devkit/build-angular:protractor",
"options": {
"protractorConfig": "e2e/protractor.conf.js",
"devServerTarget": "Emergent-Event:serve"
},
"configurations": {
"production": {
"devServerTarget": "Emergent-Event:serve:production"
}
}
}
}
}},
"defaultProject": "Emergent-Event"
}
extra-webpack.config.js:
module.exports = {
module: {
rules: [
{
test: /.(svg)$/i,
use: [
{
loader: 'url-loader'
}
]
}
]
}
};
我还尝试了 svg-url-loader 和 svg-inline-loader 库,但我无法将它们中的任何一个用于内联 SVG。我不知道还能尝试什么。我的配置有问题,还是 Angular 在做我意想不到的事情?
默认情况下,angular 使用文件加载器处理它。
如何将文件加载程序替换为 base64 内联加载程序的示例代码:
// your custom webpack config
module.exports = config => {
config.module.rules = config.module.rules
.filter(rule => rule.loader !== 'file-loader')
.concat({
test: /.(eot|svg|cur|jpg|png|webp|gif|otf|ttf|woff|woff2|ani)$/,
loader: 'base64-inline-loader',
options: {
name: '[name].[ext]'
}
});
return config;
};
或者,您可以编写代码以仅从字段中删除test
svg
并仅为该字段添加新规则。