Конфигурация Parceljs - PullRequest
       16

Конфигурация Parceljs

0 голосов
/ 29 мая 2019

У меня проблема с импортом html-файлов в index.html.

Мой пакет.json

{
  "name": "test",
  "version": "1.0.0",
  "description": "test",
  "author": "test",
  "license": "ISC",
  "dependencies": {
    "del": "^3.0.0",
    "i": "^0.3.6"
  },
  "devDependencies": {
    "parcel-bundler": "^1.12.3"
  },
  "scripts": {
    "start": "parcel src/pages/index.html"
  }
}

Структура моего проекта

Я попытался включить header.html в index.html, но это не сработало.<include src="src/pages/templates/header.html"></include>

Как включить файлы html на страницу index.html?

...