使用create-react-app中遇到的问题
将配置文件导出
1
npm run eject
打包的静态资源路径
1
2
3// 在config -> path.js -> 36 line位置
const servedUrl =
envPublicUrl || (publicUrl ? url.parse(publicUrl).pathname : './');在create-react-app中配置了less,然后在引入的时候,会报一个
Inline JavaScript is not enabled. Is it set in your options?
的错,这个时候需要1
2
3
4{
loader: require.resolve('less-loader'),
options: { javascriptEnabled: true }
}
持续更新…