Я тестирую parceljs и отлично работает для разработки. У меня есть обычный CSS, чтобы просто поменять цвета фона, и очень простой файл JS, чтобы посмотреть, работает ли он.
CSS
body {
background-color: lightblue;
}
js
document.getElementById('app').textContent = 'hey'
, так что все это работает в режиме разработки. но я попробовал живой сервер на /dist/index.html, и все, что я вижу, это голый HTML. нет стиля, и скрипт не рендерится. Я также попробовал команду «сборка участка». и то же самое. Что мне нужно сделать?
package.json
{
"name": "parceltest1",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "parcel ./src/index.html",
"build": "parcel build ./src/index.html"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"parcel-bundler": "^1.12.4"
}
}
Failed to load resource: the server responded with a status of 404 (Not Found)
Refused to apply style from 'http://127.0.0.1:5500/src.e31bb0bc.css' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled