我目前正在尝试在 Angular 中建立一个文档网站。文档将使用 markdown 编写并通过 ngx-markdown 插件显示。在 JIT 构建中一切正常,但 AOT 构建总是会删除降价文件。
这就是我导入文件的方式:
import usageNavbar from '!!raw-loader!./content/usage-navbar.md';
[...]
{
title: 'Installation',
text: usageNavbar
}
[...]
我试过只使用 raw-loader 插件,但这只会在 AOT 上加载null :
{title: "Installation", text: null}
然后我尝试设置 webpacks 文件加载器,它将在构建 AOT 时输出void 0 :
{title: "Installation", text: void 0}
但 JIT 看起来像这样:
{
title: 'Installation',
text: _raw_loader_content_usage_navbar_md__WEBPACK_IMPORTED_MODULE_3__["default"]
}
没有错误消息或任何内容,它只是完全删除了任何 Markdown 文件存在的证据。
我认为这是 Angular 使用的 webpack 配置,但没有任何迹象表明这种情况正在发生。
还有这个问题不是很有帮助。
这是我与@angular-builders/custom-webpack插件一起使用的 webpack 配置:
module.exports = {
module: {
rules: [
{
test: /\.md$/i,
loader: 'file-loader',
options: {
name: `[name][hash].[ext]`,
outputPath: 'docs/',
emitFile: true
}
}
]
}
};
角.json:
[...]
"customWebpackConfig": {
"path": "./extra-webpack.config.js",
"mergeStrategies": {
"module.rules": "prepend"
}
}
[...]
我正在使用 Angular 8。