我在images文件夹中创建了一个b64Images.js文件。在里面我有以下内容:
export const placeholder = "data:image/png;base64,longb64string"
我尝试使用以下方法将其导入我的一个反应组件中:
import { placeholder} from '../../../images/b64Images.js'
它能够找到该文件,但我收到错误:
Module parse failed: fullpath/b64Images.js Line 1: Unexpected token
You may need an appropriate loader to handle this file type.
它只是一个js文件,我的webpack已配置为处理此问题。导入我的reducer函数时没有任何问题。