我想从项目的根目录加载文件,同时利用嵌套目录结构来托管示例(运行webpack dev服务器的位置)。
devServer: {
colors: true,
contentBase: './example',
historyApiFallback: true,
inline: true,
progress: true
}
<!-- how do i access you `node_modules`! -->
<link href="node_modules/path/to/file.css" rel="stylesheet">
<script src="node_modules/path/to/file.js"></script>
<script src="bundle.js"></script>
除了将contentBase设置为.
(root)之外,还有什么可以做到这一点吗?