我已经在使用 create-react-app 制作的 React 应用程序中安装了react-h5-audio-player并且它运行良好。
我对定制的 React 项目做了同样的事情,我被要求配置 webpack 以加载 css 文件。
webpack.config.js
module.exports = {
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: "babel-loader"
}
}
]
}
};
错误 (
ERROR in ./node_modules/react-h5-audio-player/lib/styles.css 1:0
Module parse failed: Unexpected token (1:0)
) 发生在下面的 css 文件中,这些 css 文件是由安装的音频播放器制作的(用typescript制作)
.rhap_container {
box-sizing: border-box;
display: flex;
flex-direction: column;
line-height: 1;
font-family: inherit;
width: 100%;
padding: 10px 15px;
background-color: #fff;
box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
}
.rhap_container:focus:not(:focus-visible) {
outline: 0;
}