728x90
Failed to compile.
./node\_modules/pinia/dist/pinia.mjs 1148:44-52
Can't import the named export 'computed' from non EcmaScript module (only default export is available)
위와 같은 에러가 뜬다면, vue.config.js에 아래 구문을 추가해볼 것.
configureWebpack: {
module: {
rules: [
{
test: /\.mjs$/,
include: /node_modules/,
type: 'javascript/auto',
},
],
},
},
그리고도 안 된다면, Vue를 꼭 재실행 해볼 것!
run serve 등 작업을 끄고, 다시 실행하기!
적용이 안 되었을 수도 있다!
728x90
'프로그래밍(Programming) > Vue' 카테고리의 다른 글
Pinia 사용법 (설치 및 적용) (0) | 2022.06.24 |
---|