grunt copy - 无法加载 png 图像
grunt copy - Couldn't load the png image
我是新手。
我正在复制 src 文件夹以通过 运行 命令 grunt copy
构建。
但我无法打开构建文件夹(目标文件夹)中的所有 png 图像。
尝试打开图像时出现致命错误。
错误:
"Could not load image"
"Fatal Error reading PNG image file: Not a PNG file"
我使用的 Grunt 版本:
grunt-cli v1.2.0,
咕噜 v0.4.5,
grunt-contrib-copy@1.0.0.
我已经尝试使用堆栈溢出和其他站点中的所有可用链接。
请帮助我。
我得到答案了;
我在 gruntfile.js
中做了一些修改:
- 在
gruntfile.js
的末尾添加了 grunt.loadNpmTasks('grunt-contrib-copy');
。
修改了 options
如下:
options: { punctuation: '' }
我是新手。
我正在复制 src 文件夹以通过 运行 命令 grunt copy
构建。
但我无法打开构建文件夹(目标文件夹)中的所有 png 图像。
尝试打开图像时出现致命错误。
错误:
"Could not load image"
"Fatal Error reading PNG image file: Not a PNG file"
我使用的 Grunt 版本: grunt-cli v1.2.0, 咕噜 v0.4.5, grunt-contrib-copy@1.0.0.
我已经尝试使用堆栈溢出和其他站点中的所有可用链接。
请帮助我。
我得到答案了;
我在 gruntfile.js
中做了一些修改:
- 在
gruntfile.js
的末尾添加了grunt.loadNpmTasks('grunt-contrib-copy');
。 修改了
options
如下:options: { punctuation: '' }