Replies: 1 comment
-
// vue.config.js
module.exports = {
configureWebpack: {
resolve: {
fallback: { fs: false, path: false }
}
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
const { defineConfig } = require('@vue/cli-service') module.exports = defineConfig({ transpileDependencies: true }) module.exports = { resolve: { fallback: { fs: false, path: false } } };
wrong??
Beta Was this translation helpful? Give feedback.
All reactions