vue-image-annotation
Version:
add annotation to the picture
26 lines (24 loc) • 404 B
JavaScript
// demo
/* module.exports = {
publicPath: '.',
outputDir: 'docs'
}; */
// dev
module.exports = {
css: {
extract: false
},
configureWebpack: () => {
if (process.env.NODE_ENV === 'production') {
return {
externals: {
fabric: {
root: 'fabric',
commonjs: 'fabric',
commonjs2: 'fabric'
}
}
};
}
}
};