- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我希望能够在 @import
语句中使用绝对路径。像这样的东西:
@import '/templates/common/variables'
但是,sass 似乎将其解析为我的文件系统中的绝对 URL。我希望它在我的项目文件夹中查找。例如。我的文件实际上位于 /home/username/project/templates/common/_variables.scss
这有可能吗?
我已经看过 includePaths
但这似乎根本没有任何作用。
我正在使用 encore 来编写我的 webpack 文件,它看起来大致如下:
const Encore = require('@symfony/webpack-encore');
Encore
.setOutputPath("web/build/")
.setPublicPath("/build")
// [...]
.enableSassLoader(options => {
options.includePaths = [path.resolve(__dirname, '/web')];
})
;
这里也是生成的 webpack 配置(安静冗长,我没有用上面的示例路径替换我的真实路径):
{
context:'/var/www',
entry:{
index:[
'./polyfills.js',
'./web/typo3conf/ext/hn_project/ext_index.js',
'./web/typo3conf/ext/hn_templates/ext_index.js'
],
backend:[
'./polyfills.js',
'./web/typo3conf/ext/hn_project/ext_backend.js'
]
},
output:{
path:'/var/www/web/build',
filename:'[name].[chunkhash:8].js',
publicPath:'/build/',
pathinfo:false
},
module:{
rules:[
{
test:/\.jsx?$/,
exclude:/(node_modules|bower_components)/,
use:[
{
loader:'babel-loader',
options:{
cacheDirectory:true,
presets:[
[
'env',
{
modules:false,
targets:{
browsers:[
'and_chr 67',
'and_uc 11.8',
'chrome 67',
'chrome 66',
'chrome 65',
'edge 17',
'edge 16',
'firefox 60',
'firefox 59',
'firefox 52',
'ie 11',
'ie 10',
'ie_mob 11',
'ie_mob 10',
'ios_saf 11.3',
'ios_saf 11.0-11.2',
'opera 53',
'opera 52',
'safari 11.1',
'safari 11',
'samsung 6.2'
],
uglify:true
},
useBuiltIns:true
}
]
],
plugins:[
]
}
}
]
},
{
test:/\.css$/,
use:[
{
loader:'/var/www/node_modules/extract-text-webpack-plugin/dist/loader.js',
options:{
omit:1,
remove:true
}
},
{
loader:'style-loader'
},
{
loader:'css-loader',
options:{
minimize:true,
sourceMap:false,
importLoaders:1
}
},
{
loader:'postcss-loader',
options:{
sourceMap:false,
ident:'postcss',
plugins:[
{
[
Function:plugin
] options:{
grid:false
},
browsers:undefined,
info:[
Function
],
postcssPlugin:'autoprefixer',
postcssVersion:'6.0.23'
}
]
}
}
]
},
{
test:/\.(png|jpg|jpeg|gif|ico|svg|webp)$/,
loader:'url-loader',
options:{
name:'images/[name].[hash:8].[ext]',
publicPath:'/build/',
limit:4096
}
},
{
test:/\.(woff|woff2|ttf|eot|otf)$/,
loader:'url-loader',
options:{
name:'fonts/[name].[hash:8].[ext]',
publicPath:'/build/',
limit:4096
}
},
{
test:/\.s[ac]ss$/,
use:[
{
loader:'/var/www/node_modules/extract-text-webpack-plugin/dist/loader.js',
options:{
omit:1,
remove:true
}
},
{
loader:'style-loader'
},
{
loader:'css-loader',
options:{
minimize:true,
sourceMap:false,
importLoaders:1
}
},
{
loader:'postcss-loader',
options:{
sourceMap:false,
ident:'postcss',
plugins:[
{
[
Function:plugin
] options:{
grid:false
},
browsers:undefined,
info:[
Function
],
postcssPlugin:'autoprefixer',
postcssVersion:'6.0.23'
}
]
}
},
{
loader:'resolve-url-loader',
options:{
sourceMap:false
}
},
{
loader:'sass-loader',
options:{
sourceMap:true,
includePaths:[
'/web'
]
}
}
]
}
]
},
plugins:[
ExtractTextPlugin {
filename:'[name].[contenthash:8].css',
id:1,
options:{
allChunks:false
}
},
DeleteUnusedEntriesJSPlugin {
entriesToDelete:[
]
},
ManifestPlugin {
opts:{
publicPath:null,
basePath:'build/',
fileName:'manifest.json',
transformExtensions:/^(gz|map)$/i,
writeToFileEmit:true,
seed:null,
filter:null,
map:null,
generate:null,
sort:null,
serialize:[
Function:serialize
]
}
},
LoaderOptionsPlugin {
options:{
debug:false,
options:{
context:'/var/www',
output:{
path:'/var/www/web/build'
}
},
test:{
test:[
Function:test
]
}
}
},
HashedModuleIdsPlugin {
options:{
hashFunction:'md5',
hashDigest:'base64',
hashDigestLength:4
}
},
WebpackChunkHash {
algorithm:'md5',
digest:'hex',
additionalHashContent:[
Function
]
},
ProvidePlugin {
definitions:{
'$':'jquery',
jQuery:'jquery',
'window.jQuery':'jquery'
}
},
CleanWebpackPlugin {
paths:[
'**/*'
],
options:{
root:'/var/www/web/build',
verbose:false,
allowExternal:false,
dry:false
}
},
DefinePlugin {
definitions:{
'process.env':{
NODE_ENV:'"production"'
}
}
},
UglifyJsPlugin {
options:{
sourceMap:false
}
},
FriendlyErrorsWebpackPlugin {
compilationSuccessInfo:{
messages:[
]
},
onErrors:undefined,
shouldClearConsole:false,
formatters:[
[
Function:format
],
[
Function:format
],
[
Function:format
],
[
Function:format
],
[
Function:format
],
[
Function:format
]
],
transformers:[
[
Function:transform
],
[
Function:transform
],
[
Function:transform
],
[
Function:transform
],
[
Function:transform
],
[
Function:transform
]
]
},
AssetOutputDisplayPlugin {
outputPath:'web/build',
friendlyErrorsPlugin:FriendlyErrorsWebpackPlugin {
compilationSuccessInfo:{
messages:[
]
},
onErrors:undefined,
shouldClearConsole:false,
formatters:[
[
Function:format
],
[
Function:format
],
[
Function:format
],
[
Function:format
],
[
Function:format
],
[
Function:format
]
],
transformers:[
[
Function:transform
],
[
Function:transform
],
[
Function:transform
],
[
Function:transform
],
[
Function:transform
],
[
Function:transform
]
]
}
},
{
apply:[
Function:bound apply
]
},
ZopfliPlugin {
asset:'[path].gz[query]',
algorithm:[
Function
],
filename:false,
compressionOptions:{
verbose:false,
verbose_more:false,
numiterations:15,
blocksplitting:true,
blocksplittinglast:false,
blocksplittingmax:15
},
test:/\.(js|css|svg|ttf)$/,
threshold:1400,
minRatio:0.8,
deleteOriginalAssets:false
},
BrotliPlugin {
asset:'[path].br[query]',
test:/\.(js|css|svg|ttf)$/,
threshold:1400,
minRatio:0.8,
deleteOriginalAssets:false,
compress:[
Function
]
}
],
performance:{
hints:false
},
stats:{
hash:false,
version:false,
timings:false,
assets:false,
chunks:false,
maxModules:0,
modules:false,
reasons:false,
children:false,
source:false,
errors:false,
errorDetails:false,
warnings:false,
publicPath:false
},
resolve:{
extensions:[
'.js',
'.jsx',
'.vue',
'.ts',
'.tsx'
],
alias:{
}
},
externals:{
}
}
这里还有一些可能有趣的软件包版本
@symfony/webpack-encore@0.20.1
node-sass@4.9.0
sass-loader@7.0.3
webpack@3.12.0
最佳答案
您可以使用 Webpack 别名。将每个导入 /templates
解析到项目的 templates/
文件夹。
const path = require('path');
module.exports = {
// ...
resolve: {
alias: {
'/templates': path.resolve(__dirname, './templates')
}
}
};
我阅读了@sympony/webpack-encore
并找到了addAliases
设置。您可以使用以下示例。
const path = require('path');
const Encore = require('@symfony/webpack-encore');
Encore
// ...
.addAliases({
'/templates': path.resolve(__dirname, './templates')
});
在导入时在 Scss/SASS 中使用 ~
前面的文件路径。
@import '~/templates/common/variables'
关于Webpack sass loader解析绝对路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51424434/
BufferedImage image = ImageIO.read(SpriteSheet.class.getResource(path)); BufferedImage image = Image
希望有人能够帮助我解决将我的 React 应用程序推送到 Heroku 时遇到的问题。 heroku 日志反复显示以下错误。 at=error code=H10 desc="App crashed"
我是 Kotlin 的新手,我正在经历这样的例子。 . . package com.example.lambda1 import spark.Spark.get fun main(args: Arra
如果您已经安装了 32 位 JDK,请在中定义一个 JAVA_HOME 变量 Computer>System Properties>System Setting>Enviorment VAriable
我正在开发一个独立于平台的应用程序。我收到一个文件 URL*。在 Windows 上,这些是: file:///Z:/folder%20to%20file/file.txt file://host/f
我在 OSX、Objective-C 上。 我有一个像 这样的路径/NSURL /Users/xxx/Desktop/image2.png 但我将它传递给第三方应用程序,该应用程序会像 excpect
我已经安装了 Android studio 和插件的 DART,FLUTTER 来启动 flutter,但是因为我在创建我的第一个 flutter 项目时无法提供 sdk 路径。 最佳答案 我试图找出
127.0.0.1:8000/api/仅包含来自第二个应用程序的 url,但我将两个 url 模块链接到相同的模式。甚至有可能做到这一点吗? 第一个应用程序: from django.urls imp
对于大量图像(大约 1k,加上相同数量的拇指,在大约 500 个文件夹中),我们要求网站上使用的所有图像 URI 都必须具有 SEO 优化路径。它们已经准备好并提供完整的路径结构(每个文件夹包含一个具
为什么 f 不是一个文件?什么可能导致这种情况? String currentPhotoPath = "file:/storage/sdcard0/Pictures/someFileName.
Gradle 中的项目名称或路径中允许使用哪些字符? 它是否与特定操作系统的目录名称中允许的字符相同(例如: http://en.wikipedia.org/wiki/Filename#Reserve
我有一个包含文件夹路径的表格。我需要找到层次结构中这些文件夹之间的所有“差距”。我的意思是,如果表格包含这 3 个文件夹: 'A' 'A\B\C' 'A\B\C\D\E\F\G' 我需要在层次结构中找
我在 Linux 服务器上的/home/subversion 中安装了 svn - 那里有一个 ROOT 文件夹,其中包含 db 和 conf 等文件夹。没有映射到项目名称的文件夹,请有人告诉我如何列
对于我的图像位置:/src/assets/bitmap/sample.jpg 给出了关键配置: context: resolve('src') output: { path: resolve('b
我需要创建带有圆角的 SVG 路径,以将它们导出到 DXF 进行切割。我的问题是角应该是圆弧,而不是贝塞尔曲线。 使用 arc 命令相对容易处理直角,因为半径也是从拐角到圆弧起点的距离。对于其他角度,
大家好,我正在玩 Airflow,我正在阅读这篇很有帮助的 tutorial .我正在寻求帮助以更好地了解 Admin->Connection 如何在 Conn Type: File (path) 方
我的目标是定义R将用于安装和搜索库的单个路径。我read可以通过更改Rprofile.site安装路径中的R文件来完成。我在那里尝试了两个命令: .libPaths("D:/RLibrary") .L
我有一个问题:当我在一个页面中时,我想返回到上一页。我使用 $routeProvider。如何读取之前的 url? 我尝试在我的 Controller 中使用此代码但不起作用... angular.m
我正在尝试将一个文件从我的主干合并到一个分支(wc),并且对于看起来位于当前合并操作中不涉及的分支上的路径出现奇怪的未找到路径错误。 例如,在我们的 svn 项目中,我们有: 分行 分支 0 分支 1
我有一个树数据序列化如下: 关系:P到C是“一对多”,C到P是“一对一”。所以列 P 可能有重复的值,但列 C 有唯一的值。 P, C 1, 2 1, 3 3, 4 2, 5 4, 6 # in da
我是一名优秀的程序员,十分优秀!