Parcel에 js, css 및 이미지 파일을 번들로 제공하는 기본 자습서를 따르고 있습니다. 내 파일 구조 dist
node_modules
src
- index.html
- style.css
- index.js
- somemodule.js
나는 서버가 시작 parcel ./src/index.html
을 실행할 수있는 코드를 생성 : 그것은 변수를 정의하려고하기 때문에 그 코드를 실행할 수 없습니다 "use strict";
// modules are defined as an array
// [ module function, map of requires ]
//
// map of requires is short require name -> num
현재,이 같이하는 SCS 파일을 가져옵니다 @import '~bulma/bulma';
어쨌든 내가 할 수있는 : @import './node_modules/bulma/bulma';
그러나, Laravel 믹스에 난 그냥 ./node_modules를 지정하지 않고, 같은 파일을 가져올 수 있다는 것을 배웠습니다 ParcelJS에 있는거야?