如何在vue中的组件中导入“ wasm”文件。我已经研究了2天,没有解决方案。这是我的配置文件:
const path = require('path');
const contentBase = path.resolve(__dirname, '..', '..');
module.exports = {
assetsDir: 'static',
configureWebpack: config => {
config.devServer = {
before(app) {
// use proper mime-type for wasm files
app.get('*.wasm', function (req, res, next) {
var options = {
root: contentBase,
dotfiles: 'deny',
headers: {
'Content-Type': 'application/wasm'
}
};
res.sendFile(req.url, options, function (err) {
if (err) { next(err); }
});
});
}
}
}
有人可以帮我吗?