作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用parcel.js
和SCSS来使用背景图像,但是得到:
Uncaught SyntaxError: Unexpected token < 7d6454d814b6ce2e1592d3937c337ef3.js:1
Cannot read property 'js' of null
.hero{
background-image: url('../../images/2ndpaper.jpg');
}
import "../styles/index.scss";
import paperbg from "../images/2ndpaper.jpg";
{
"name": "development",
"version": "1.0.0",
"description": "CB PC - Web Development",
"main": "index.js",
"scripts": {
"dev": "parcel src/index.html",
"build": "parcel build src/index.html --out-dir prod"
},
"keywords": [
"client",
"website"
],
"author": "Designs by Harp",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"parcel-bundler": "^1.11.0"
},
"dependencies": {
"bootstrap-4-grid": "^2.4.1",
"gsap": "^2.0.2",
"jshint": "^2.10.1",
"sass": "^1.17.2"
}
}
最佳答案
我会添加新的npm脚本,尝试按照Parcel documentation中的建议添加“--public-url ./”
"build2": "parcel build src/index.html --public-url prod"
关于javascript - 如何在SCSS + Parcel.js中使用背景图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54892273/
我是一名优秀的程序员,十分优秀!