fonteditor-core
fonteditor-core copied to clipboard
webpack打包报错
`These dependencies were not found:
- env in ./node_modules/fonteditor-core/woff2/woff2.wasm
- global in ./node_modules/fonteditor-core/woff2/woff2.wasm`
webpack打包报错
在 webpack 上打包时,需要自己拷贝 woff2.wasm,然后 初始化时传入 下载地址:
woff2.init(wasmUrl).then(() => {
// read
let font = Font.create(buffer, {
type: 'woff2'
});
// write
font.write({type: 'woff2'});
});
是在编译的时候就报错,能否给一个示例