728x90
반응형
SMALL

Vue 4

vue build 시 쌍따옴표가 삭제되서 에러 날 때(vue.config.js)

#Vue Cli 2 에서 설정 webpack,prod.conf.js 파일에서 removeAttributeQuotes: true, 를 removeAttributeQuotes: false, 로 변경 #Vue Cli 3 에서 설정 vue.config.js 파일 생성 후 1 2 3 4 5 6 7 8 9 10 module.exports = { chainWebpack: config => { if (process.env.NODE_ENV === "production") { config.plugin("html").tap(args => { args[0].minify.removeAttributeQuotes = false; return args; }); } } }; Colored by Color Scripter

Program/Vue 2018.08.01
728x90
반응형
LIST