We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c774c0 commit 40ada1cCopy full SHA for 40ada1c
config/index.ts
@@ -29,7 +29,7 @@ try {
29
console.error(chalk.redBright(e))
30
}
31
} else {
32
- console.error(chalk.redBright(e.stack ?? e))
+ console.error(chalk.redBright(e.stack ? e.stack : e))
33
34
35
if (process.env.VITE_DEBUG) {
examples/my-spa-js-app/vue.config.js
@@ -5,7 +5,7 @@ module.exports = () => {
5
overlay: false,
6
},
7
configureWebpack: {
8
- plugins: [require('unplugin-icons/webpack')({ compiler: 'vue2' })],
+ // plugins: [require('unplugin-icons/webpack')({ compiler: 'vue2' })],
9
10
pluginOptions: {
11
vite: {
0 commit comments