You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
vue.esm.js?a026:628 [Vue warn]: Failed to resolve async component: () => Promise.all(/*!import() */[__webpack_require__.e(16), __webpack_require__.e(37)]).then(__webpack_require__.bind(null, /*! ./node_modules/vuepress-plugin-live/vueLiveWithLayout */ "./node_modules/vuepress-plugin-live/vueLiveWithLayout.js"))
Reason: TypeError: Cannot set property 'dynamicImport' of undefined
What my config looks like
constpath=require('path');constpurgecss=require('@fullhuman/postcss-purgecss')({// Specify the paths to all of the template files in your project content: ['../../src/**/*.vue',],// Include any special characters you're using in this regular expressiondefaultExtractor: content=>content.match(/[A-Za-z0-9-_:/]+/g)||[]})module.exports={title: 'Hello VuePress',description: 'Just playing around',postcss: {plugins: [require('tailwindcss')(path.join(__dirname,'../../tailwind.config.js')),require('autoprefixer')({add: true,grid: true}),
...process.env.NODE_ENV==='production'
? [purgecss]
: []],},plugins: [['live'],['docgen',{componentsDir: path.join(__dirname,'../../src/components')}]],themeConfig: {nav: [{text: 'Home',link: '/'},{text: 'Components',link: '/components/'},]},configureWebpack: {resolve: {alias: {'@': path.join(__dirname,'../../src')}}}}
What my config looks like
what my component looks like
The text was updated successfully, but these errors were encountered: