1.업로드 클래스 구축 // import { newTokenMessage} from "@/assets/js/Jslib"; export default class MyUploadAdapter { constructor(props) { // CKEditor 5's FileLoader instance. this.loader = props; // URL where to send files. this.url = process.env.API_URL+'/file/upload'; } // Starts the upload process. upload() { console.log('upload'); return new Promise((resolve, reject) => { this._initRequest(); this._in..